summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal...Nadeem Vawda2012-11-051-6/+23
* Issue #16230: Fix a crash in select.select() when one the lists changes size ...Antoine Pitrou2012-11-011-4/+2
* Issue #16228: Fix a crash in the json module where a list changes size while ...Antoine Pitrou2012-11-011-7/+3
* Fix docstring for deque ctor to mark iterable parameter optionalAndrew Svetlov2012-10-311-1/+1
* initialize more global type objects (closes #16369)Benjamin Peterson2012-10-301-0/+3
* #14897: Enhance error messages of struct.pack and struct.pack_intoPetri Lehtinen2012-10-291-4/+14
* Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and ...Mark Dickinson2012-10-251-4/+3
* Issue #14398: Fix size truncation and overflow bugs in bz2 module.Nadeem Vawda2012-10-211-152/+176
* Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-101-1/+6
* Closes #15897: zipimport.c doesn't check return value of fseek(). TypoJesus Cea2012-10-031-5/+5
* Closes #15897: zipimport.c doesn't check return value of fseek()Jesus Cea2012-10-031-7/+36
* Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patc...Senthil Kumaran2012-09-251-3/+7
* Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()Christian Heimes2012-09-241-1/+1
* Issue #15973: fixed 3.2 backport.Alexander Belopolsky2012-09-201-2/+4
* Issue #15973: Fixed segmentation fault on timezone comparison to other types.Alexander Belopolsky2012-09-201-3/+7
* #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka.Ezio Melotti2012-09-183-3/+3
* Closes #15793: Stack corruption in ssl.RAND_egd()Jesus Cea2012-09-111-1/+1
* #15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea2012-09-101-0/+1
* #15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea2012-09-101-0/+5
* Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-101-0/+5
* Issue #15868: Fix refleak in bytesio.c (Coverity #715365).Stefan Krah2012-09-081-1/+3
* Issue #15841: The readable(), writable() and seekable() methods of BytesIOAntoine Pitrou2012-09-052-8/+31
* Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled...Ronald Oussoren2012-08-254-7/+125
* Issue 15777: Fix a refleak in _posixsubprocess.Ross Lagerwall2012-08-241-1/+3
* Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on...Ronald Oussoren2012-08-221-1/+1
* Issue #15738: Fix a missing NULL check in subprocess_fork_exec().Stefan Krah2012-08-201-0/+2
* Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken.Mark Dickinson2012-08-182-6/+25
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-157-31/+63
* Modules/socketmodule.c: netdb_lock: define static.Matthias Klose2012-08-141-1/+1
* Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-101-0/+15
* open() / TextIOWrapper doc: make it explicit than newline='\n' doesn'tVictor Stinner2012-08-042-6/+6
* Make TextIOWrapper's documentation clearer by copying the newline argument's ...Antoine Pitrou2012-08-041-9/+16
* Closes #15469: Correct __sizeof__ support for dequeJesus Cea2012-08-031-1/+20
* Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-031-1/+12
* Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation ...Antoine Pitrou2012-08-022-2/+2
* Issue #15489: Add a __sizeof__ implementation for BytesIO objects.Antoine Pitrou2012-07-301-0/+12
* Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-0/+14
* Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.Meador Inge2012-07-281-6/+2
* Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+17
* Raise ImportError if pyexpat's version is incompatibleEli Bendersky2012-07-211-4/+7
* Closes #15395: memory leaks in selectmodule.cJesus Cea2012-07-191-1/+2
* Closes #15396: memory leak in tkinterJesus Cea2012-07-191-1/+3
* Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.Meador Inge2012-07-191-28/+23
* ISsue #14988: restore Python 2's behavior of raising ImportError when unable ...Eli Bendersky2012-07-171-0/+2
* Issue #15247: FileIO now raises an error when given a file descriptor pointin...Antoine Pitrou2012-07-061-12/+5
* Fix issue # 15033 - Return the proper exitcode for failure when modules are i...Senthil Kumaran2012-07-041-1/+1
* Issue #5067: improve some json error messages.Antoine Pitrou2012-06-291-4/+4
* Fixes issue #12268: File readline, readlines and read() or readall() methodsGregory P. Smith2012-06-235-8/+49
* Remove useless test (flowinfo is unsigned).Charles-Fran?ois Natali2012-06-231-2/+2
* #10053: Don't close FDs when FileIO.__init__ failsHynek Schlawack2012-06-211-6/+5