index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #19730: Argument Clinic now supports all the existing PyArg
Larry Hastings
2013-11-23
5
-67/+182
*
Issue #19722: Added opcode.stack_effect(), which accurately
Larry Hastings
2013-11-23
1
-0/+116
*
Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,
Serhiy Storchaka
2013-11-23
3
-25/+81
*
Issue #13592: Improved the repr for regular expression pattern objects.
Serhiy Storchaka
2013-11-23
2
-1/+83
*
Fix signed / unsigned comparison
Antoine Pitrou
2013-11-23
1
-1/+1
*
Issue #19641: Added the audioop.byteswap() function to convert big-endian
Serhiy Storchaka
2013-11-23
1
-0/+32
*
gcc doesn't realize that dummy is always initialized by the function call
Gregory P. Smith
2013-11-23
1
-1/+1
*
merge
Christian Heimes
2013-11-23
1
-2/+8
|
\
|
*
Merge heads
Serhiy Storchaka
2013-11-23
1
-11/+24
|
|
\
|
*
|
Issue #15204: Deprecated the 'U' mode in file-like objects.
Serhiy Storchaka
2013-11-23
1
-2/+8
*
|
|
Issue #17810: Add two missing error checks to save_global
Christian Heimes
2013-11-23
1
-2/+4
|
|
/
|
/
|
*
|
Merge
Antoine Pitrou
2013-11-23
1
-1/+1
|
\
\
|
*
|
Issue #17810: return -1 on error
Christian Heimes
2013-11-23
1
-1/+1
*
|
|
Fix writing out 64-bit size fields on 32-bit builds
Antoine Pitrou
2013-11-23
1
-11/+21
|
/
/
*
|
Issue #17810: Add NULL check to save_frozenset
Christian Heimes
2013-11-23
1
-0/+3
|
/
*
Issue #17810: Implement PEP 3154, pickle protocol 4.
Antoine Pitrou
2013-11-23
1
-367/+1013
*
- Modules/_struct.c (unpackiter_type): Define static.
doko@ubuntu.com
2013-11-23
1
-1/+1
*
Issue #19727: os.utime(..., None) is now potentially more precise under Windows.
Antoine Pitrou
2013-11-23
1
-7/+2
*
Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when given
Victor Stinner
2013-11-23
1
-1/+1
*
Issue #18874: Remove tracemalloc.set_traceback_limit()
Victor Stinner
2013-11-23
1
-31/+18
*
Issue #18874: Implement the PEP 454 (tracemalloc)
Victor Stinner
2013-11-23
4
-7/+2063
*
Issue #8813: X509_VERIFY_PARAM is only available on OpenSSL 0.9.8+
Christian Heimes
2013-11-23
1
-0/+9
*
Issue #19448: report name / NID in exception message of ASN1Object
Christian Heimes
2013-11-22
1
-3/+3
*
Issue #18147: Add missing documentation for SSLContext.get_ca_certs().
Christian Heimes
2013-11-22
1
-4/+6
*
Issue #17134: Finalize interface to Windows' certificate store. Cert and
Christian Heimes
2013-11-22
1
-95/+219
*
silence an overflow warning. slen is smaller than 1MB
Christian Heimes
2013-11-21
1
-1/+2
*
downcast len to int. The code has already checked that len < INT_MAX
Christian Heimes
2013-11-21
1
-1/+1
*
lst might be NULL here
Christian Heimes
2013-11-21
1
-1/+1
*
Issue #8813: Add SSLContext.verify_flags to change the verification flags
Christian Heimes
2013-11-21
1
-0/+49
*
Close #18294: Fix the zlib module to make it 64-bit safe
Victor Stinner
2013-11-21
1
-55/+125
*
Issue #19682: Fix compatibility issue with old version of OpenSSL that
Christian Heimes
2013-11-21
1
-0/+6
*
Issue #18379: SSLSocket.getpeercert() returns CA issuer AIA fields, OCSP
Christian Heimes
2013-11-21
1
-1/+151
*
Issue #18138: Implement cadata argument of SSLContext.load_verify_location()
Christian Heimes
2013-11-21
1
-27/+167
*
Issue #19474: Argument Clinic now always specifies a default value for
Larry Hastings
2013-11-20
1
-4/+4
*
ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.
Christian Heimes
2013-11-20
1
-1/+1
*
Issue #19437: Fix error handling of PyCArrayType_new(), don't decreases the
Victor Stinner
2013-11-18
1
-1/+2
*
Issue #19437: Fix error handling of CDataType_from_buffer()
Victor Stinner
2013-11-18
1
-1/+0
*
Argument Clinic: rename "self" to "module" for module-level functions.
Larry Hastings
2013-11-18
7
-67/+70
*
GetVolumePathNameW: downcast bufsize to DWORD
Christian Heimes
2013-11-18
1
-1/+2
*
Safely downcast SOCKET_T to int in _ssl module
Christian Heimes
2013-11-18
1
-3/+5
*
Remove unused code path from PBKDF2 that is causing a warning on Win64
Christian Heimes
2013-11-18
1
-5/+1
*
Issue #19520: Fix (the last!) compiler warning on 32bit Windows, in _sha3
Zachary Ware
2013-11-17
1
-1/+1
*
Issue #19634: Fix time_strftime() on AIX, format is a wchar_t* not a PyObject*
Victor Stinner
2013-11-18
1
-2/+1
*
sqlite: Use Py_ssize_t to store a size instead of an int
Victor Stinner
2013-11-18
1
-2/+4
*
sqlite: raise an OverflowError if a string or a BLOB is longer than INT_MAX
Victor Stinner
2013-11-18
1
-8/+16
*
Fix a compiler warning on Windows 64-bit: _sqlite module
Victor Stinner
2013-11-18
1
-4/+9
*
sqlite: raise an OverflowError if the result is longer than INT_MAX bytes
Victor Stinner
2013-11-18
1
-2/+8
*
Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a
Victor Stinner
2013-11-17
1
-0/+14
*
Fix compilation error under gcc of the ctypes module bundled libffi for arm.
Gregory P. Smith
2013-11-17
1
-7/+7
|
\
|
*
Fix compilation error under gcc of the ctypes module bundled libffi for arm.
Gregory P. Smith
2013-11-17
1
-7/+7
[next]