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.
 
 
 
 
 
 
Serhiy Storchaka db12ef7e8a Refactor multiplication and division of timedelta and float. (#3656) 9 years ago
..
_blake2 bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
_ctypes bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in case of a bad __dict__. (#3254) 9 years ago
_decimal bpo-31406: Fix crash due to lack of type checking in subclassing. (#3477) 9 years ago
_io bpo-25359: Add missed "goto error" after setting an exception. (#3712) 9 years ago
_multiprocessing bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) 9 years ago
_sha3 bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
_sqlite sqlite: delete some bsddb cargo-culted code to work around Python 2.3/2.4 bugs 9 years ago
_xxtestfuzz Avoid UB in test selection macro. (#3407) 9 years ago
cjkcodecs bpo-31275: Small refactoring to silence a fall-through warning. (#3206) 9 years ago
clinic bpo-30397: Add re.Pattern and re.Match. (#1646) 9 years ago
expat remove configure check for memmove (#3716) 9 years ago
README Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
Setup.dist bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
_asynciomodule.c bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076) 9 years ago
_bisectmodule.c Issue #28792: Remove aliases from _bisect 9 years ago
_bz2module.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
_codecsmodule.c bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) 9 years ago
_collectionsmodule.c bpo-31586: Use _count_element fast path for real dicts. 9 years ago
_cryptmodule.c Issue #27332: Fixed the type of the first argument of module-level functions 10 years ago
_csv.c Use NULL rather than 0. (#778) 9 years ago
_curses_panel.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
_cursesmodule.c [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
_datetimemodule.c Refactor multiplication and division of timedelta and float. (#3656) 9 years ago
_dbmmodule.c bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) 9 years ago
_elementtree.c bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash (#3641) 9 years ago
_functoolsmodule.c bpo-31497: Add private helper _PyType_Name(). (#3630) 9 years ago
_gdbmmodule.c bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) 9 years ago
_hashopenssl.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
_heapqmodule.c Issue #15984: Merge PyUnicode doc from 3.5 10 years ago
_json.c bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() received a bad encoder() argument. (#3643) 9 years ago
_localemodule.c [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
_lsprof.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
_lzmamodule.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
_math.c Issue #28256: Cleanup _math.c 9 years ago
_math.h Issue #28256: Cleanup _math.c 9 years ago
_opcode.c Issue #27332: Fixed the type of the first argument of module-level functions 10 years ago
_operator.c bpo-30592: Fixed error messages for some builtins. (#1996) 9 years ago
_pickle.c bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) 9 years ago
_posixsubprocess.c bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834) 9 years ago
_randommodule.c bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad __abs__() method. (#3596) 9 years ago
_scproxy.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
_sre.c bpo-30397: Add re.Pattern and re.Match. (#1646) 9 years ago
_ssl.c bpo-31431: SSLContext.check_hostname auto-sets CERT_REQUIRED (#3531) 9 years ago
_ssl_data.h Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_stat.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_struct.c bpo-30246: fix several error messages which only mention bytes in struct (#1421) 9 years ago
_testbuffer.c Expand the PySlice_GetIndicesEx macro. (#1023) 9 years ago
_testcapimodule.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
_testimportmultiple.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_testmultiphase.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
_threadmodule.c bpo-30860: Consolidate stateful runtime globals. (#3397) 9 years ago
_tkinter.c bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split() (#3866) 9 years ago
_tracemalloc.c bpo-31338 (#3374) 9 years ago
_uuidmodule.c bpo-11063: Fix _uuid module on macOS (#3855) 9 years ago
_weakref.c Issue #28427: old keys should not remove new values from 9 years ago
_winapi.c bpo-31471: Fix assertion failure in subprocess.Popen() on Windows, in case env has a bad keys() method. (#3580) 9 years ago
addrinfo.h replace PY_LONG_LONG with long long 10 years ago
arraymodule.c bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631) 9 years ago
atexitmodule.c bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (#2034) 9 years ago
audioop.c bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tuples. (#3119) 9 years ago
binascii.c bpo-9566: Fix some Windows x64 compiler warnings (#2492) 9 years ago
cmathmodule.c Issue 23229: add cmath.inf, cmath.nan, cmath.infj and cmath.nanj. 10 years ago
config.c.in Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
errnomodule.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
faulthandler.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
fcntlmodule.c bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) 9 years ago
fpectlmodule.c remove IRIX support (closes bpo-31341) (#3310) 9 years ago
fpetestmodule.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
gc_weakref.txt Issue #13590: Improve support for OS X Xcode 4: 14 years ago
gcmodule.c bpo-30860: Consolidate stateful runtime globals. (#3397) 9 years ago
getaddrinfo.c Issue #26505: merge from 3.5 10 years ago
getbuildinfo.c bpo-27593: Get SCM build info from git instead of hg. (#446) 9 years ago
getnameinfo.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
getpath.c bpo-31532: Fix memory corruption due to allocator mix (#3679) 9 years ago
grpmodule.c [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
hashlib.h bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
hashtable.c Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). 10 years ago
hashtable.h Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). 10 years ago
itertoolsmodule.c bpo-30347: Stop crashes when concurrently iterate over itertools.groupby() iterators. (#1557) 9 years ago
ld_so_aix.in Issue #10656: Fix out-of-tree building on AIX 9 years ago
main.c bpo-30860: Consolidate stateful runtime globals. (#2594) 9 years ago
makesetup bpo-20210: Support the *disabled* marker in Setup files (GH-132) 9 years ago
makexp_aix - Changes donated by Elemental Security to make it work on AIX 5.3 21 years ago
mathmodule.c bpo-31338 (#3374) 9 years ago
md5module.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
mmapmodule.c Expand the PySlice_GetIndicesEx macro. (#1023) 9 years ago
nismodule.c [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
ossaudiodev.c bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) 9 years ago
overlapped.c bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tuples. (#3119) 9 years ago
parsermodule.c bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (#1131) 9 years ago
posixmodule.c remove support for BSD/OS (closes bpo-31624) (#3812) 9 years ago
posixmodule.h Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
pwdmodule.c [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
pyexpat.c bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) 9 years ago
readline.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
resource.c bpo-20185: Convert the resource moduel to Argument Clinic. (#545) 9 years ago
rotatingtree.c Untabify C files. Will watch buildbots. 16 years ago
rotatingtree.h Fix comment typo 20 years ago
selectmodule.c bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) 9 years ago
sha1module.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
sha256module.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
sha512module.c Removed redundant Argument Clinic directives. 9 years ago
signalmodule.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
socketmodule.c Remove a null statement that was necessary for --without-threads (#3478) 9 years ago
socketmodule.h bpo-31462: Remove trailing whitespaces. (#3564) 9 years ago
spwdmodule.c [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
sre.h Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup 9 years ago
sre_constants.h bpo-30215: Make re.compile() locale agnostic. (#1361) 9 years ago
sre_lib.h bpo-30215: Make re.compile() locale agnostic. (#1361) 9 years ago
symtablemodule.c Issue #20186: Converted the symtable module to Argument Clinic. 9 years ago
syslogmodule.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
termios.c Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever 9 years ago
testcapi_long.h Issue #13590: Improve support for OS X Xcode 4: 14 years ago
timemodule.c bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tuples. (#3119) 9 years ago
tkappinit.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
tkinter.h Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
unicodedata.c bpo-30736: upgrade to Unicode 10.0 (#2344) 9 years ago
unicodedata_db.h bpo-30736: upgrade to Unicode 10.0 (#2344) 9 years ago
unicodename_db.h bpo-30736: upgrade to Unicode 10.0 (#2344) 9 years ago
winreparse.h Issue #17599: Use unique _Py_REPARSE_DATA_BUFFER etc names to avoid conflict 10 years ago
xxlimited.c merge 3.5 (#29398) 9 years ago
xxmodule.c bpo-31443: Formulate the type slot initialization rules in terms of C99. (#3688) 9 years ago
xxsubtype.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
zipimport.c bpo-31602: Fix an assertion failure in zipimporter.get_source() in case of a bad zlib.decompress() (GH-3784) 9 years ago
zlibmodule.c bpo-31370: Remove support for threads-less builds (#3385) 9 years ago

README

Source files for standard library extension modules,
and former extension modules that are now builtin modules.