Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ↵ | Nadeem Vawda | 2012-11-11 | 1 | -3/+3 |
| | | | | | | mean 'no compression'. Patch by Brian Brazil. | ||||
* | Fixes issue #9535: Fix pending signals that have been received but not | Gregory P. Smith | 2012-11-11 | 1 | -0/+16 |
| | | | | yet handled by Python to not persist after os.fork() in the child process. | ||||
* | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to ↵ | Nadeem Vawda | 2012-11-11 | 1 | -0/+2 |
| | | | | | | access previously-freed memory. Patch by Serhiy Storchaka. | ||||
* | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in ↵ | Nadeem Vawda | 2012-11-11 | 1 | -45/+55 |
| | | | | | | | | | | decompressobj().flush(). Additionally, fix a bug where a MemoryError in allocating a bytes object could leave the decompressor object in an invalid state (with its unconsumed_tail member being NULL). Patch by Serhiy Storchaka. | ||||
* | Issue #16350: Fix zlib decompressor handling of unused_data with multiple ↵ | Nadeem Vawda | 2012-11-04 | 1 | -6/+23 |
| | | | | | | calls to decompress() after EOF. Patch by Serhiy Storchaka. | ||||
* | Issue #16230: Fix a crash in select.select() when one the lists changes size ↵ | Antoine Pitrou | 2012-11-01 | 1 | -4/+2 |
| | | | | | | while iterated on. Patch by Serhiy Storchaka. | ||||
* | Issue #16228: Fix a crash in the json module where a list changes size while ↵ | Antoine Pitrou | 2012-11-01 | 1 | -7/+3 |
| | | | | | | it is being encoded. Patch by Serhiy Storchaka. | ||||
* | Fix docstring for deque ctor to mark iterable parameter optional | Andrew Svetlov | 2012-10-31 | 1 | -1/+1 |
| | |||||
* | initialize more global type objects (closes #16369) | Benjamin Peterson | 2012-10-31 | 1 | -0/+3 |
| | |||||
* | #14897: Enhance error messages of struct.pack and struct.pack_into | Petri Lehtinen | 2012-10-29 | 1 | -4/+14 |
| | | | | Patch by Matti Mäki. | ||||
* | Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and ↵ | Mark Dickinson | 2012-10-25 | 1 | -4/+3 |
| | | | | diagnosis. | ||||
* | Issue #14398: Fix size truncation and overflow bugs in bz2 module. | Nadeem Vawda | 2012-10-21 | 1 | -152/+176 |
| | |||||
* | Fixes Issue #16114: The subprocess module no longer provides a | Gregory P. Smith | 2012-10-10 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | misleading error message stating that args[0] did not exist when either the cwd or executable keyword arguments specified a path that did not exist. It now keeps track of if the child got as far as preexec and reports it if not back to the parent via a special "noexec" error message value in the error pipe so that the cwd can be blamed for a failed chdir instead of the exec of the executable being blamed instead. The executable is also always reported accurately when exec fails. Unittests enhanced to cover these cases. | ||||
* | Closes #15897: zipimport.c doesn't check return value of fseek(). Typo | Jesus Cea | 2012-10-03 | 1 | -5/+5 |
| | |||||
* | Closes #15897: zipimport.c doesn't check return value of fseek() | Jesus Cea | 2012-10-03 | 1 | -7/+36 |
| | |||||
* | Issue #16013: Fix CSV Reader parsing issue with ending quote characters. ↵ | Senthil Kumaran | 2012-09-25 | 1 | -3/+7 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() | Christian Heimes | 2012-09-24 | 1 | -1/+1 |
| | | | | method doesn't require an argument again. | ||||
* | Issue #15973: fixed 3.2 backport. | Alexander Belopolsky | 2012-09-20 | 1 | -2/+4 |
| | |||||
* | Issue #15973: Fixed segmentation fault on timezone comparison to other types. | Alexander Belopolsky | 2012-09-20 | 1 | -3/+7 |
| | |||||
* | #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. | Ezio Melotti | 2012-09-18 | 3 | -3/+3 |
| | |||||
* | Closes #15793: Stack corruption in ssl.RAND_egd() | Jesus Cea | 2012-09-11 | 1 | -1/+1 |
| | |||||
* | #15676: mmap: add empty file check prior to offset check <- Previous patch ↵ | Jesus Cea | 2012-09-10 | 1 | -0/+1 |
| | | | | was incomplete (fix 2) | ||||
* | #15676: mmap: add empty file check prior to offset check <- Previous patch ↵ | Jesus Cea | 2012-09-10 | 1 | -0/+5 |
| | | | | was incomplete | ||||
* | Closes #15676: mmap: add empty file check prior to offset check | Jesus Cea | 2012-09-09 | 1 | -0/+5 |
| | |||||
* | Issue #15868: Fix refleak in bytesio.c (Coverity #715365). | Stefan Krah | 2012-09-08 | 1 | -1/+3 |
| | |||||
* | Issue #15841: The readable(), writable() and seekable() methods of BytesIO | Antoine Pitrou | 2012-09-05 | 2 | -8/+31 |
| | | | | | and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura. | ||||
* | Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is ↵ | Ronald Oussoren | 2012-08-25 | 4 | -7/+125 |
| | | | | compiled using the clang compiler | ||||
* | Issue 15777: Fix a refleak in _posixsubprocess. | Ross Lagerwall | 2012-08-24 | 1 | -1/+3 |
| | | | | It was exposed by 03c98d05b140 and dbbf3ccf72e8. | ||||
* | Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set ↵ | Ronald Oussoren | 2012-08-22 | 1 | -1/+1 |
| | | | | | | | on Mac OS X. This is due to an off-by-one error: the allocated buffer didn't have room for a NUL character at the end of the mbstowcs result. | ||||
* | Issue #15738: Fix a missing NULL check in subprocess_fork_exec(). | Stefan Krah | 2012-08-20 | 1 | -0/+2 |
| | |||||
* | Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. | Mark Dickinson | 2012-08-18 | 2 | -6/+25 |
| | |||||
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle ↵ | Antoine Pitrou | 2012-08-15 | 7 | -31/+63 |
| | | | | | | errors correctly. Patch by Serhiy Storchaka. | ||||
* | Modules/socketmodule.c: netdb_lock: define static. | Matthias Klose | 2012-08-14 | 1 | -1/+1 |
| | |||||
* | Issue #15424: Add a __sizeof__ implementation for array objects. | Meador Inge | 2012-08-11 | 1 | -0/+15 |
| | | | | Patch by Ludwig Hähne. | ||||
* | open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't | Victor Stinner | 2012-08-03 | 2 | -6/+6 |
| | | | | translate newlines on output. | ||||
* | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵ | Antoine Pitrou | 2012-08-03 | 1 | -9/+16 |
| | | | | description from open(). | ||||
* | Closes #15469: Correct __sizeof__ support for deque | Jesus Cea | 2012-08-03 | 1 | -1/+20 |
| | |||||
* | Closes #15512: Correct __sizeof__ support for parser | Jesus Cea | 2012-08-03 | 1 | -1/+12 |
| | |||||
* | Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation ↵ | Antoine Pitrou | 2012-08-02 | 2 | -2/+2 |
| | | | | | | code. Patch by Philipp Hagemeister. | ||||
* | Issue #15489: Add a __sizeof__ implementation for BytesIO objects. | Antoine Pitrou | 2012-07-29 | 1 | -0/+12 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. | Antoine Pitrou | 2012-07-29 | 1 | -0/+14 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. | Meador Inge | 2012-07-29 | 1 | -6/+2 |
| | |||||
* | Issue #15402: Add a __sizeof__ method to struct.Struct. | Meador Inge | 2012-07-23 | 1 | -0/+17 |
| | | | | Initial patch by Serhiy Storchaka. | ||||
* | Raise ImportError if pyexpat's version is incompatible | Eli Bendersky | 2012-07-21 | 1 | -4/+7 |
| | |||||
* | Closes #15395: memory leaks in selectmodule.c | Jesus Cea | 2012-07-19 | 1 | -1/+2 |
| | |||||
* | Closes #15396: memory leak in tkinter | Jesus Cea | 2012-07-19 | 1 | -1/+3 |
| | |||||
* | Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. | Meador Inge | 2012-07-19 | 1 | -28/+23 |
| | |||||
* | ISsue #14988: restore Python 2's behavior of raising ImportError when unable ↵ | Eli Bendersky | 2012-07-17 | 1 | -0/+2 |
| | | | | to load pyexpat, instead of a SystemError/RuntimeError | ||||
* | Issue #15247: FileIO now raises an error when given a file descriptor ↵ | Antoine Pitrou | 2012-07-06 | 1 | -12/+5 |
| | | | | pointing to a directory. | ||||
* | Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵ | Senthil Kumaran | 2012-07-05 | 1 | -1/+1 |
| | | | | invoked using -m switch. Patch contributed by Jeff Knupp |