You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Antoine Pitrou c27cd71cd7 Merge 13 years ago
..
_ctypes Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL. 13 years ago
_decimal Merge 3.3. 13 years ago
_io Fix use of uninitialized scalar variable, see 3f994367a979 13 years ago
_multiprocessing Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros 13 years ago
_sha3 yet another WITH_THREADS typo 13 years ago
_sqlite Issue #18519: the Python authorizer callback of sqlite3 must not raise Python exceptions 13 years ago
cjkcodecs Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to 13 years ago
expat Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, 13 years ago
zlib Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, 13 years ago
Setup.config.in Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 18 years ago
Setup.dist Issue #11016: Add C implementation of the stat module as _stat 13 years ago
_bisectmodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
_bz2module.c Issue #18227: "Free" function of bz2, lzma and zlib modules has no return value (void) 13 years ago
_codecsmodule.c Issue #16096: Fix several occurrences of potential signed integer overflow. Thanks Serhiy Storchaka. 13 years ago
_collectionsmodule.c Restore the data block size to 62. 13 years ago
_cryptmodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
_csv.c Use logic operator, not bitwise operator, for conditional. 13 years ago
_curses_panel.c Issue #18408: Fix PyInit__curses_panel(), handle import_curses() failure 13 years ago
_cursesmodule.c Fix possible NULL pointer dereference in PyCurses_Start_Color() 13 years ago
_datetimemodule.c Fix NULL ptr dereferencing in local_timezone(). nameo can be NULL 13 years ago
_dbmmodule.c #16135: Removal of OS/2 support (Modules/*) 13 years ago
_elementtree.c Add missing check of PyDict_Update()'s return value in _elementtree.c 13 years ago
_freeze_importlib.c Now all error paths of _freeze_importlib use 'goto error' and the error label cleans up all used resources. 13 years ago
_functoolsmodule.c Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple 13 years ago
_gdbmmodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
_hashopenssl.c In the _hashlib module, only initialize the static data for OpenSSL's 13 years ago
_heapqmodule.c Issue #18408: Fix heapq.heappop(), handle PyList_SetSlice() failure 13 years ago
_json.c Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in 13 years ago
_localemodule.c Issue #18408: Fix locale.localeconv(), handle PyDict_SetItemString() failure 13 years ago
_lsprof.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
_lzmamodule.c Issue #18227: "Free" function of bz2, lzma and zlib modules has no return value (void) 13 years ago
_math.c Update the embedded copy of the expat XML parser to 2.1.0. It brings 14 years ago
_math.h Update the embedded copy of the expat XML parser to 2.1.0. It brings 14 years ago
_operator.c #16523: merge with 3.3. 13 years ago
_pickle.c Issue #18559: Fix NULL pointer dereference error in _pickle module 13 years ago
_posixsubprocess.c Fixes Issue #16962: Use getdents64 instead of the obsolete getdents syscall 13 years ago
_randommodule.c Issue #18408: random_seed() now raises a MemoryError on memory allocation 13 years ago
_scproxy.c Fix for issue #9568. 15 years ago
_sre.c Issue #17016: Get rid of possible pointer wraparounds and integer overflows 13 years ago
_ssl.c Check return value of PyLong_FromLong(X509_get_version()). It might be NULL if 13 years ago
_ssl_data.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
_stat.c Issue #11016: Don't define macros and constants that are already set by pyport.h 13 years ago
_struct.c Issue #14596: The struct.Struct() objects now use more compact implementation. 13 years ago
_testbuffer.c Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() 13 years ago
_testcapimodule.c Test Py_IncRef() and Py_DecRef() C functions 13 years ago
_testembed.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
_testimportmultiple.c Remove compile warnings for _testimportmodule 13 years ago
_threadmodule.c merge #17091: update docstring for _thread.Lock.acquire. 13 years ago
_tkinter.c Issue #18101: Tcl.split() now process strings nested in a tuple as it 13 years ago
_weakref.c Implement PEP 3121: new module initialization and finalization API. 18 years ago
_winapi.c Issue #9566: _winapi.WriteFile() now truncates length to DWORD_MAX (4294967295) 13 years ago
addrinfo.h Recorded merge of revisions 81029 via svnmerge from 16 years ago
ar_beos Moved BeOS/ar-fake and BeOS/linkmodule to Modules/ar_beos and 25 years ago
arraymodule.c Issue #18408: Fix array_tolist(), handle PyList_SetItem() failure 13 years ago
atexitmodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
audioop.c Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules 13 years ago
binascii.c Issue #18408: Fix usage of _PyBytes_Resize() 13 years ago
cmathmodule.c Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath.rect(0.0,-0.0) results. 13 years ago
config.c.in Issue #13590: Improve support for OS X Xcode 4: 14 years ago
errnomodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
faulthandler.c Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() 13 years ago
fcntlmodule.c Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() 13 years ago
fpectlmodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
fpetestmodule.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
gc_weakref.txt Issue #13590: Improve support for OS X Xcode 4: 14 years ago
gcmodule.c Issue #18112: PEP 442 implementation (safe object finalization). 13 years ago
getaddrinfo.c Update the embedded copy of the expat XML parser to 2.1.0. It brings 14 years ago
getbuildinfo.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
getnameinfo.c Update the embedded copy of the expat XML parser to 2.1.0. It brings 14 years ago
getpath.c Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], 13 years ago
grpmodule.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
hashlib.h Issue #16113: integrade SHA-3 (Keccak) patch from http://hg.python.org/sandbox/cheimes 13 years ago
itertoolsmodule.c Closes #18220: expand itertools.islice docstring to 2 lines 13 years ago
ld_so_aix.in Issue #13590: Improve support for OS X Xcode 4: 14 years ago
ld_so_beos Remove a hard coded Python version, and a now incorrect relative path. Closes 25 years ago
main.c #16937: merge with 3.3. 13 years ago
makesetup Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when running 16 years ago
makexp_aix - Changes donated by Elemental Security to make it work on AIX 5.3 21 years ago
mathmodule.c Issue #16305: Merge fix from 3.2. 13 years ago
md5module.c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros 13 years ago
mmapmodule.c Merge 13 years ago
nismodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
ossaudiodev.c Use strncat() instead of strcat() to silence some warnings. 13 years ago
parsermodule.c Issue #18408: Fix typo in build_node_tree() of the parser module 13 years ago
posixmodule.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
posixmodule.h Issue #4591: Uid and gid values larger than 2**31 are supported now. 13 years ago
pwdmodule.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
pyexpat.c Check return value of PyEval_GetGlobals() for NULL 13 years ago
python.c Issue #15893: Improve error handling in main() and Py_FrozenMain() 13 years ago
readline.c Issue #15699: The readline module now uses PEP 3121-style module initialization, so as to reclaim allocated resources (Python callbacks) at shutdown. 13 years ago
resource.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
rotatingtree.c Untabify C files. Will watch buildbots. 16 years ago
rotatingtree.h Fix comment typo 20 years ago
selectmodule.c Issue #18408: Fix select.select() to handle PyList_New() failure (MemoryError) 13 years ago
sha1module.c Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns 13 years ago
sha256module.c Fix compiler warnings: explicit cast to int in sha256/sha512 modules 13 years ago
sha512module.c Fix compiler warnings: explicit cast to int in sha256/sha512 modules 13 years ago
signalmodule.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
socketmodule.c Issue #18549: Eliminate dead code in socket_ntohl(). 13 years ago
socketmodule.h Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian 13 years ago
spwdmodule.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
sre.h Issue #13169: The maximal repetition number in a regular expression has been 13 years ago
sre_constants.h Implemented non-recursive SRE matching. 23 years ago
symtablemodule.c Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() 13 years ago
syslogmodule.c Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() 13 years ago
termios.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
testcapi_long.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
timemodule.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
tkappinit.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
tkinter.h Include tkinter.h only after including tk.h (or the equivalent for another platform). 17 years ago
unicodedata.c #16681: merge with 3.2. 13 years ago
unicodedata_db.h upgrade to UCD 6.2 13 years ago
unicodename_db.h upgrade to UCD 6.2 13 years ago
xxlimited.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
xxmodule.c Make indentation consistent 13 years ago
xxsubtype.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
zipimport.c Grammatical mistake in a comment 13 years ago
zlibmodule.c Issue #18408: Fix usage of _PyBytes_Resize() 13 years ago