5997 Commits (090f7be6dfd4e246cf5bc2db24c2070810d3c98b)

Author SHA1 Message Date
Andrew Svetlov 56ad5ed5ad Issue #16443: Add docstrings to regular expression match objects. 13 years ago
Kristjan Valur Jonsson 9946bd69fa Don't DECREF the ctypes error_object without the GIL held. 13 years ago
Andrew Svetlov 737fb89dd1 Issue #16714: use 'raise' exceptions, don't 'throw'. 13 years ago
Benjamin Peterson 7eb8a1a0cb remove dead code 13 years ago
Ezio Melotti e3d7e54b11 #16681: use "bidirectional class" instead of "bidirectional category" in the docstring too. 13 years ago
Gregory P. Smith 9504b13145 Code style fixup: No need for double ((parenthesis)) and use {} on an if else. 13 years ago
Gregory P. Smith 90555d0f0d 1 << 31 is invalid for signed integers, fix it by making 1 unsigned. 13 years ago
Antoine Pitrou 305e1a749f Issue #16628: Fix a memory leak in ctypes.resize(). 13 years ago
Victor Stinner 27b1ca29cc Issue #16416: On Mac OS X, operating system data are now always 13 years ago
Antoine Pitrou 43fb54cd4f Issue #10182: The re module doesn't truncate indices to 32 bits anymore. 13 years ago
Gregory P. Smith 14b04cd350 Plug a leak in timemodule. The module dictionary is saved during 13 years ago
Antoine Pitrou bf6ecf92fa Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. 13 years ago
Ezio Melotti a0dd22e5e8 #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. 13 years ago
Antoine Pitrou 39bdad813a Issue #1160: Fix compiling large regular expressions on UCS2 builds. 13 years ago
Nadeem Vawda 19e568d254 Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. 13 years ago
Gregory P. Smith 9463e3ac8b Fixes issue #9535: Fix pending signals that have been received but not 13 years ago
Nadeem Vawda 7ee955550b Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. 13 years ago
Nadeem Vawda ee7889dec3 Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). 13 years ago
Nadeem Vawda 39079946a2 Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. 13 years ago
Antoine Pitrou e4ad37e50e Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. 13 years ago
Antoine Pitrou 9f69e79c45 Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. 13 years ago
Andrew Svetlov 6a5c7c341a Fix docstring for deque ctor to mark iterable parameter optional 13 years ago
Benjamin Peterson c43112823b initialize more global type objects (closes #16369) 13 years ago
Petri Lehtinen 92c28cace4 #14897: Enhance error messages of struct.pack and struct.pack_into 13 years ago
Mark Dickinson 76464494bc Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. 13 years ago
Nadeem Vawda 5f8f0d6777 Issue #14398: Fix size truncation and overflow bugs in bz2 module. 13 years ago
Gregory P. Smith 5591b02a4c Fixes Issue #16114: The subprocess module no longer provides a 13 years ago
Jesus Cea cf45325b61 Closes #15897: zipimport.c doesn't check return value of fseek(). Typo 13 years ago
Jesus Cea 09bf7a799d Closes #15897: zipimport.c doesn't check return value of fseek() 13 years ago
Senthil Kumaran 67b7b98a47 Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. 13 years ago
Christian Heimes e26d3af7ee Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() 13 years ago
Alexander Belopolsky 57caede470 Issue #15973: fixed 3.2 backport. 13 years ago
Alexander Belopolsky 3ec153681e Issue #15973: Fixed segmentation fault on timezone comparison to other types. 13 years ago
Ezio Melotti 16d2b47837 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. 13 years ago
Jesus Cea c8754a13e6 Closes #15793: Stack corruption in ssl.RAND_egd() 13 years ago
Jesus Cea e8db356cf1 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) 13 years ago
Jesus Cea 1f2799bef4 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete 13 years ago
Jesus Cea 941bfcc537 Closes #15676: mmap: add empty file check prior to offset check 13 years ago
Stefan Krah 96efdd422c Issue #15868: Fix refleak in bytesio.c (Coverity #715365). 13 years ago
Antoine Pitrou 1d857453b7 Issue #15841: The readable(), writable() and seekable() methods of BytesIO 14 years ago
Ronald Oussoren 25437565f9 Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using the clang compiler 14 years ago
Ross Lagerwall f2b34b8b96 Issue 15777: Fix a refleak in _posixsubprocess. 14 years ago
Ronald Oussoren eb61f8b3a7 Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on Mac OS X. 14 years ago
Stefan Krah db579d7b25 Issue #15738: Fix a missing NULL check in subprocess_fork_exec(). 14 years ago
Mark Dickinson 05d79e9abf Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. 14 years ago
Antoine Pitrou 6f430e4963 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. 14 years ago
Matthias Klose d182a6c77e Modules/socketmodule.c: netdb_lock: define static. 14 years ago
Meador Inge 03b4d5072a Issue #15424: Add a __sizeof__ implementation for array objects. 14 years ago
Victor Stinner 401e17d0f0 open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't 14 years ago
Antoine Pitrou 0c1c0d42dc Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). 14 years ago