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.
 
 
 
 
 
 
R David Murray bd90d09dd0 #18678: Correct names of spwd struct members. 12 years ago
..
_ctypes Issue #19437: Fix PyCFuncPtrType constructor, handle 12 years ago
_decimal Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup() 12 years ago
_io Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure 12 years ago
_multiprocessing Fix conversion from Py_ssize_t to int. 13 years ago
_sha3 Issue #18742: Expose the internal hash type object for ABCs. 12 years ago
_sqlite Issue #1772673: The type of `char*` arguments now changed to `const char*`. 12 years ago
cjkcodecs CJK codecs: less magical macros, semicolon is now explicit 12 years ago
expat Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, 13 years ago
zlib Issue #18527: Upgrade internal copy of zlib to 1.2.8 12 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 #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). 12 years ago
_codecsmodule.c Issue #18722: Remove uses of the "register" keyword in C code. 13 years ago
_collectionsmodule.c merge 12 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 compilation of the curses module (broken by issue #16612). 12 years ago
_datetimemodule.c Issue #16612: Add "Argument Clinic", a compile-time preprocessor 12 years ago
_dbmmodule.c Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string 12 years ago
_elementtree.c Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. 12 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 #19288: Fixed the "in" operator of dbm.gnu databases for string 12 years ago
_hashopenssl.c Silence a compiler warning about an unused function 12 years ago
_heapqmodule.c Issue #18408: Fix heapq.heappop(), handle PyList_SetSlice() failure 13 years ago
_json.c Close #18264: int- and float-derived enums now converted to int or float. 13 years ago
_localemodule.c Cleanup locale.localeconv(): move Py_DECREF() closer to the error 12 years ago
_lsprof.c Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
_lzmamodule.c #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). 12 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 #19437: Fix _pickle, don't call _Unpickler_SkipConsumed() with an 12 years ago
_posixsubprocess.c Issue #18571: Implementation of the PEP 446: file descriptors and file handles 13 years ago
_randommodule.c Issue #18783: Removed existing mentions of Python long type in docstrings, 13 years ago
_scproxy.c Fix for issue #9568. 16 years ago
_sre.c Issue #19405: Fixed outdated comments in the _sre module. 12 years ago
_ssl.c Issue #19437: Fix newPySSLSocket(), handle PyWeakref_NewRef() failure 12 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 #18783: Removed existing mentions of Python long type in docstrings, 13 years ago
_testbuffer.c Re #18521: fix not-quite-C syntax that works only because the PyXXX_Check are macros defined with () around them. 12 years ago
_testcapimodule.c Issue #19433: test_capi: check signness of some C types 12 years ago
_testembed.c Issue #16129: Add `Py_SetStandardStreamEncoding` 12 years ago
_testimportmultiple.c Remove compile warnings for _testimportmodule 13 years ago
_threadmodule.c Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. 13 years ago
_tkinter.c Issue #19034: repr() for tkinter.Tcl_Obj now exposes string reperesentation. 13 years ago
_weakref.c Issue #16612: Add "Argument Clinic", a compile-time preprocessor 12 years ago
_winapi.c #18466: merge with 3.3. 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 #18722: Remove uses of the "register" keyword in C code. 13 years ago
atexitmodule.c Issue #18619: Fix atexit leaking callbacks registered from sub-interpreters, and make it GC-aware. 13 years ago
audioop.c Issue #19418 Fix some warnings on Win64 12 years ago
binascii.c Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object. 12 years ago
cmathmodule.c Issue #17684: Fix some test_socket failures due to limited FD passing support 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 Close #18957: The PYTHONFAULTHANDLER environment variable now only enables the 13 years ago
fcntlmodule.c Issue #19147: merge from 3.3 12 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 Replace an overly optimistic assert() in _PyGC_CollectNoFail with a simple guard. 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 #18661: typo in grp.struct_group docstring (fix merged from 3.3). Thanks Vajrasky Kok. 13 years ago
hashlib.h Closes #18627: merge from 3.3 13 years ago
itertoolsmodule.c Add a comment making it explicit that itertools.tee() is already 64bit-safe (issue #19049) 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 Issue #18571: Implementation of the PEP 446: file descriptors and file handles 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 #18783: Removed existing mentions of Python long type in docstrings, 13 years ago
md5module.c Issue #18742: Expose the internal hash type object for ABCs. 12 years ago
mmapmodule.c Issue #18571: Implementation of the PEP 446: file descriptors and file handles 13 years ago
nismodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
ossaudiodev.c Issue #18571: Implementation of the PEP 446: file descriptors and file handles 13 years ago
overlapped.c asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk). 12 years ago
parsermodule.c Close #11619: The parser and the import machinery do not encode Unicode 13 years ago
posixmodule.c Issue #19437: Fix os.statvfs(), handle errors 12 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 #1772673: The type of `char*` arguments now changed to `const char*`. 12 years ago
resource.c Issue #16595: Add prlimit() to resource module 12 years ago
rotatingtree.c Untabify C files. Will watch buildbots. 16 years ago
rotatingtree.h Fix comment typo 20 years ago
selectmodule.c Issue #19437: Fix select.epoll.poll(), fix code handling PyMem_New() error 12 years ago
sha1module.c Issue #18742: Expose the internal hash type object for ABCs. 12 years ago
sha256module.c Issue #18742: Expose the internal hash type object for ABCs. 12 years ago
sha512module.c Issue #18742: Expose the internal hash type object for ABCs. 12 years ago
signalmodule.c Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok. 13 years ago
socketmodule.c Re #18521: remove assignments of variables that are immediately reassigned. 12 years ago
socketmodule.h Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian 13 years ago
spwdmodule.c #18678: Correct names of spwd struct members. 12 years ago
sre.h Issue #18685: Restore re performance to pre-PEP 393 levels. 12 years ago
sre_constants.h Implemented non-recursive SRE matching. 23 years ago
sre_lib.h Issue #18685: Extract template part of _sre.c into separated sre_lib.h file. 12 years ago
symtablemodule.c merge 3.3 (#19393) 12 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 Issue #16612: Add "Argument Clinic", a compile-time preprocessor 12 years ago
unicodedata_db.h upgrade unicode db to 6.3.0 (closes #19221) 12 years ago
unicodename_db.h upgrade unicode db to 6.3.0 (closes #19221) 12 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 Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() failures 12 years ago
zlibmodule.c Issue #16612: Add "Argument Clinic", a compile-time preprocessor 12 years ago