Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | ||||
* | Issue #5067: improve some json error messages. | Antoine Pitrou | 2012-06-28 | 1 | -4/+4 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Fixes issue #12268: File readline, readlines and read() or readall() methods | Gregory P. Smith | 2012-06-24 | 5 | -8/+49 |
| | | | | | | no longer lose data when an underlying read system call is interrupted. IOError is no longer raised due to a read system call returning EINTR from within these methods. | ||||
* | Remove useless test (flowinfo is unsigned). | Charles-François Natali | 2012-06-23 | 1 | -2/+2 |
| | |||||
* | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 1 | -6/+5 |
| | | | | Loosely based on the work by Hirokazu Yamamoto. | ||||
* | Issue #10133: Make multiprocessing deallocate buffer if socket read fails. | Richard Oudkerk | 2012-06-11 | 1 | -13/+16 |
| | | | | Patch by Hallvard B Furuseth. | ||||
* | Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call. | Gregory P. Smith | 2012-06-05 | 1 | -0/+7 |
| | |||||
* | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵ | Antoine Pitrou | 2012-05-28 | 1 | -3/+57 |
| | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk. | ||||
* | Issue #9041: raised exception is misleading | Meador Inge | 2012-05-28 | 1 | -25/+5 |
| | | | | | | An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed. | ||||
* | #4841: Fix FileIO constructor to honor closefd when called repeatedly | Hynek Schlawack | 2012-05-25 | 1 | -3/+7 |
| | | | | Patch by Victor Stinner. | ||||
* | Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** ↵ | Antoine Pitrou | 2012-05-16 | 1 | -1/+2 |
| | | | | 32) under 64-bit Windows. | ||||
* | Issue #14741: Fix missing support for ellipsis in parser module. | Mark Dickinson | 2012-05-07 | 1 | -5/+1 |
| | |||||
* | Issue #14697: Fix missing parser module support for set displays and set ↵ | Mark Dickinson | 2012-05-07 | 1 | -21/+79 |
| | | | | comprehensions. | ||||
* | Issue #14701: Add missing support for 'raise ... from' in parser module. | Mark Dickinson | 2012-05-07 | 1 | -12/+11 |
| | |||||
* | Fix for issue 14725 for 3.2 branch | Richard Oudkerk | 2012-05-05 | 1 | -0/+1 |
| | |||||
* | Issue #14696: Fix parser module to understand 'nonlocal' declarations. | Mark Dickinson | 2012-04-29 | 1 | -5/+36 |
| | |||||
* | Issue #9154: Fix parser module to understand function annotations. | Mark Dickinson | 2012-04-29 | 1 | -57/+71 |
| | |||||
* | Issue 13496: Fix bisect.bisect overflow bug for large collections. | Mark Dickinson | 2012-04-15 | 1 | -2/+8 |
| | |||||
* | prevent writing to stderr from messing up the exception state (closes #14474) | Benjamin Peterson | 2012-04-02 | 1 | -0/+3 |
| | |||||
* | Issue #14437: Fix building the _io module under Cygwin. | Antoine Pitrou | 2012-03-31 | 1 | -1/+1 |
| | |||||
* | Issue #3367: NULL-terminate argv[] copies to prevent an invalid access | Stefan Krah | 2012-03-26 | 1 | -2/+4 |
| | | | | in sys_update_path(). | ||||
* | Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined. | Ross Lagerwall | 2012-03-19 | 1 | -1/+12 |
| | | | | Based on patch from Hervé Coatanhay. | ||||
* | Fixes Issue 14234: fix for the previous commit, keep compilation when | Gregory P. Smith | 2012-03-15 | 2 | -0/+7 |
| | | | | | using --with-system-expat working when the system expat does not have salted hash support. | ||||
* | Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes | Gregory P. Smith | 2012-03-14 | 4 | -59/+130 |
|\ | | | | | | | | | | | in the hash table internal to the pyexpat module's copy of the expat library to avoid a denial of service due to hash collisions. Patch by David Malcolm with some modifications by the expat project. | ||||
| * | Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes | Gregory P. Smith | 2012-03-14 | 4 | -59/+130 |
| | | | | | | | | | | | | in the hash table internal to the pyexpat module's copy of the expat library to avoid a denial of service due to hash collisions. Patch by David Malcolm with some modifications by the expat project. | ||||
* | | fix indentation | Benjamin Peterson | 2012-03-13 | 1 | -7/+7 |
| | | |||||
* | | keep the buffer object around while we're using it (closes #14212) | Benjamin Peterson | 2012-03-07 | 2 | -33/+49 |
| | | |||||
* | | Issue #14125: backport refleak fix (d4adbf908983). | Stefan Krah | 2012-02-27 | 1 | -2/+3 |
| | | |||||
* | | Fix typo in “seperat{or,ion}” | Éric Araujo | 2012-02-26 | 2 | -2/+2 |
| | | |||||
* | | merge with 3.2 | Georg Brandl | 2012-02-21 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Remove reST markup from --help output. Also: O(n**2) is dict construction, ↵ | Georg Brandl | 2012-02-21 | 1 | -3/+3 |
| | | | | | | | | not single insertion. |