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 4de7457009 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. 13 years ago
..
_ctypes Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple 13 years ago
_io Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying 13 years ago
_multiprocessing Issue #10527: Use poll() instead of select() for multiprocessing pipes 13 years ago
_sqlite Issue #17073: Fix some integer overflows in sqlite3 module. 13 years ago
cjkcodecs Closes #12291: Fixed bug which was found when doing multiple loads from one stream. 15 years ago
expat Update the embedded copy of the expat XML parser to 2.1.0. It brings 14 years ago
zlib Add file needed to make distclean. 16 years ago
Setup.config.in Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 18 years ago
Setup.dist Fix few typos. 14 years ago
_bisectmodule.c Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. 14 years ago
_codecsmodule.c Merged revisions 81860 via svnmerge from 16 years ago
_collectionsmodule.c Fix docstring for deque ctor to mark iterable parameter optional 13 years ago
_csv.c Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. 13 years ago
_curses_panel.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
_cursesmodule.c Issue #10570: curses.putp() is now expecting a byte string, instead of a 14 years ago
_datetimemodule.c Issue #15973: fixed 3.2 backport. 13 years ago
_dbmmodule.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
_elementtree.c Issue #16922: fixed findtext() to return empty Unicode string instead of empty bytes object when there's no text. 13 years ago
_functoolsmodule.c Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple 13 years ago
_gdbmmodule.c #6045: provide at least get() and setdefault() for all dbm modules. 15 years ago
_gestalt.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
_hashopenssl.c In the _hashlib module, only initialize the static data for OpenSSL's 13 years ago
_heapqmodule.c Inline cmp_lt(). 16 years ago
_json.c Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. 13 years ago
_localemodule.c PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* 15 years ago
_lsprof.c Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL 15 years ago
_math.c Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. 14 years ago
_math.h Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. 14 years ago
_pickle.c Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. 13 years ago
_posixsubprocess.c Fixes Issue #16114: The subprocess module no longer provides a 13 years ago
_randommodule.c tabbing no longer applicable 16 years ago
_scproxy.c Fix for issue #9568. 15 years ago
_sre.c rename MathcObject to match object in doctrings for re module (#16760) 13 years ago
_ssl.c Closes #15793: Stack corruption in ssl.RAND_egd() 13 years ago
_struct.c Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. 13 years ago
_testcapimodule.c Test running of code in a sub-interpreter 14 years ago
_testembed.c Issue #12090: backport 79fcd71d0356 15 years ago
_threadmodule.c #17091: update docstring for _thread.Lock.acquire. 13 years ago
_time.c Fixed a typo in a comment. 16 years ago
_time.h Issue #9012: "Separate compilation of time and datetime modules." 16 years ago
_tkinter.c Closes #15396: memory leak in tkinter 14 years ago
_weakref.c Implement PEP 3121: new module initialization and finalization API. 18 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 Code style fixup: No need for double ((parenthesis)) and use {} on an if else. 13 years ago
atexitmodule.c Issue #10756: atexit normalizes the exception before displaying it. 15 years ago
audioop.c Issue #16686: Fixed a lot of bugs in audioop module. 13 years ago
binascii.c Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. 13 years ago
bz2module.c Issue #16828: Fix error incorrectly raised by bz2.compress(''). 13 years ago
cmathmodule.c #11565: Merge with 3.1. 15 years ago
config.c.in #9418: first step of moving private string methods to _string module. 15 years ago
cryptmodule.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
errnomodule.c Issue 9916: Add some missing errno symbols. 15 years ago
fcntlmodule.c Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True, 16 years ago
fpectlmodule.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
fpetestmodule.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
gc_weakref.txt SF 1055820: weakref callback vs gc vs threads 21 years ago
gcmodule.c Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. 14 years ago
getaddrinfo.c Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. 14 years ago
getbuildinfo.c let's keep parenthesis around sizeof 15 years ago
getnameinfo.c Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. 14 years ago
getpath.c Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath() 15 years ago
grpmodule.c #775964: skip YP/NIS entries instead of failing the test 15 years ago
hashlib.h Fixes Issue #3745: Fix hashlib to always reject unicode and non 17 years ago
itertoolsmodule.c Clean trailing whitespace in itertoolsmodule.c. 13 years ago
ld_so_aix.in #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review by Antoine Pitrou. 15 years ago
ld_so_beos Remove a hard coded Python version, and a now incorrect relative path. Closes 25 years ago
main.c #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. 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 Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. 13 years ago
md5module.c Issue #9566: use Py_ssize_t instead of int 15 years ago
mmapmodule.c #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) 13 years ago
nismodule.c Decode NIS data to fs encoding, using the surrogate error handler. 16 years ago
operator.c No declarations in the middle of a block (fixes compile under Windows) 15 years ago
ossaudiodev.c Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas 14 years ago
parsermodule.c Issue #16714: use 'raise' exceptions, don't 'throw'. 13 years ago
posixmodule.c Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. 13 years ago
pwdmodule.c Include structseq.h in Python.h, and remove now-redundant includes in individual sources. 15 years ago
pyexpat.c Issue #17089: Expat parser now correctly works with string input not only when 13 years ago
python.c Issue #16416: On Mac OS X, operating system data are now always 13 years ago
readline.c Issue #10350: Read and save errno before calling a function which might overwrite it. 14 years ago
resource.c Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple 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 #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. 13 years ago
sha1module.c Issue #9566: use Py_ssize_t instead of int 15 years ago
sha256module.c Issue #9566: use Py_ssize_t instead of int 15 years ago
sha512module.c Issue #9566: use Py_ssize_t instead of int 15 years ago
signalmodule.c Fixes issue #9535: Fix pending signals that have been received but not 13 years ago
socketmodule.c Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. 13 years ago
socketmodule.h Issue #10272: The ssl module now raises socket.timeout instead of a generic 15 years ago
spwdmodule.c Include structseq.h in Python.h, and remove now-redundant includes in individual sources. 15 years ago
sre.h Issue #1160: Fix compiling large regular expressions on UCS2 builds. 13 years ago
sre_constants.h Implemented non-recursive SRE matching. 23 years ago
symtablemodule.c initialize more global type objects (closes #16369) 13 years ago
syslogmodule.c Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL 15 years ago
termios.c Issue #8078: Add constants for higher baud rates in the termios module. 15 years ago
testcapi_long.h Untabify C files. Will watch buildbots. 16 years ago
timemodule.c Plug a leak in timemodule. The module dictionary is saved during 13 years ago
tkappinit.c Untabify C files. Will watch buildbots. 16 years ago
tkinter.h Include tkinter.h only after including tk.h (or the equivalent for another platform). 17 years ago
unicodedata.c #16681: use "bidirectional class" instead of "bidirectional category" in the docstring too. 13 years ago
unicodedata_db.h Upgrade to Unicode 6.0.0. 15 years ago
unicodename_db.h Upgrade to Unicode 6.0.0. 15 years ago
xxlimited.c Issue #11135: Remove redundant doc field from PyType_Spec. 15 years ago
xxmodule.c Issue #9089: Remove references to intobject.c and intobject.h from comments. 16 years ago
xxsubtype.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
zipimport.c Closes #15897: zipimport.c doesn't check return value of fseek(). Typo 13 years ago
zlibmodule.c Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. 13 years ago