Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Closes #15676: mmap: add empty file check prior to offset check | Jesus Cea | 2012-09-09 | 3 | -0/+17 |
|\ | |||||
| * | Closes #15676: mmap: add empty file check prior to offset check | Jesus Cea | 2012-09-09 | 3 | -0/+17 |
| | | |||||
* | | merge | Alexander Belopolsky | 2012-09-09 | 1 | -0/+7 |
|\ \ | |/ | |||||
| * | Issue #15881: Added NEWS entry and proper credit. | Alexander Belopolsky | 2012-09-09 | 2 | -1/+3 |
| | | |||||
| * | Issue #15881: Fixed 3.2 backport. | Alexander Belopolsky | 2012-09-09 | 1 | -0/+2 |
| | | |||||
| * | Fixed whitespace | Alexander Belopolsky | 2012-09-09 | 1 | -1/+1 |
| | | |||||
| * | Issue #15881: Fixed atexit hook in multiprocessing. | Alexander Belopolsky | 2012-09-09 | 2 | -16/+39 |
| | | |||||
* | | Fixed whitespace | Alexander Belopolsky | 2012-09-09 | 1 | -1/+1 |
| | | |||||
* | | Issue #15881: Fixed atexit hook in multiprocessing. | Alexander Belopolsky | 2012-09-09 | 2 | -9/+33 |
| | | |||||
* | | Merge in changes from 3.3.0rc2 release clone. | Georg Brandl | 2012-09-09 | 7 | -17/+36 |
|\ \ | |||||
| * | | Post-release updates for 3.3.0rc2. | Georg Brandl | 2012-09-09 | 2 | -1/+13 |
| | | | |||||
| * | | Added tag v3.3.0rc2 for changeset 88a0792e8ba3 | Georg Brandl | 2012-09-09 | 1 | -0/+1 |
| | | | |||||
| * | | Issue #15814: Update whatsnew to the current state of hashing memoryviews.v3.3.0rc2 | Stefan Krah | 2012-09-08 | 1 | -3/+2 |
| | | | |||||
| * | | Issue #15814: Add NEWS entry regarding intended memoryview hashing restrictions | Nick Coghlan | 2012-09-03 | 1 | -0/+8 |
| | | | |||||
| * | | Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews. | Stefan Krah | 2012-09-02 | 1 | -6/+8 |
| | | | |||||
| * | | Bump to 3.3.0rc2. | Georg Brandl | 2012-09-09 | 6 | -7/+7 |
| | | | |||||
| * | | Fix NEWS entry location. | Georg Brandl | 2012-09-09 | 1 | -3/+6 |
| | | | |||||
| * | | Issue #15822: Fix installation of lib2to3 grammar pickles to ensure | Ned Deily | 2012-09-09 | 3 | -3/+25 |
| | | | | | | | | | | | | | | | they are created in the install locations and with the proper timestamp. (Solution suggested by MvL) | ||||
| * | | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 7 | -9/+140 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Because of this change, a couple extension modules compiled for 3.2.4 (those which use the trashcan mechanism, despite it being undocumented) will not be loadable by 3.2.3 and earlier. However, extension modules compiled for 3.2.3 and earlier will be loadable by 3.2.4. | ||||
| * | | Changelog entry for 8c2e87aeb707. | Georg Brandl | 2012-09-08 | 1 | -0/+3 |
| | | | |||||
| * | | Fix bug with argparse.Parser.parse_args(*args) | Zbigniew Jędrzejewski-Szmek | 2012-09-02 | 2 | -1/+22 |
| | | | |||||
| * | | Closes #10650: Deprecate the watchexp parameter of Decimal.quantize(). | Stefan Krah | 2012-08-30 | 3 | -0/+12 |
| | | | |||||
| * | | Issue #15814: Document planned restrictions for memoryview hashes in 3.3.1. | Stefan Krah | 2012-09-01 | 1 | -15/+7 |
| | | | |||||
| * | | Issue #15724: Add versionchanged tags to the memoryview documentation. | Stefan Krah | 2012-08-30 | 1 | -2/+10 |
| | | | |||||
| * | | Add missing unit. | Stefan Krah | 2012-09-01 | 1 | -1/+1 |
| | | | |||||
| * | | Compile _decimal without asserts and update benchmark results. | Stefan Krah | 2012-09-01 | 2 | -2/+2 |
| | | | |||||
| * | | Close #14223: Fix window.addch(curses.ACS_HLINE) | Victor Stinner | 2012-09-01 | 2 | -27/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix window.addch() of the curses module for special characters like curses.ACS_HLINE: the Python function addch(int) and addch(bytes) is now calling the C function waddch()/mvwaddch() (as it was done in Python 3.2), instead of wadd_wch()/mvwadd_wch(). The Python function addch(str) is still calling the C function wadd_wch()/mvwadd_wch() if the Python curses is linked to libncursesw. | ||||
| * | | Issue #15828: Don't try to close a file if imp.find_module() doesn't | Brett Cannon | 2012-08-31 | 1 | -1/+3 |
| | | | | | | | | | | | | return one. | ||||
| * | | Issue #15828: Restore support for C extension modules in imp.load_module() | Nick Coghlan | 2012-08-31 | 4 | -21/+35 |
| | | | |||||
| * | | Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵ | Antoine Pitrou | 2012-09-07 | 2 | -1/+5 |
| | | | | | | | | | | | | | | | | | | opened. This was a regression caused by the hash randomization patch. | ||||
| * | | Issue #15781: Fix two small race conditions in import's module locking. | Antoine Pitrou | 2012-08-27 | 5 | -3635/+3659 |
| | | | |||||
| * | | Issue #15784: Modify OSError.__str__() to better distinguish between | Richard Oudkerk | 2012-08-28 | 3 | -4/+7 |
| | | | | | | | | | | | | errno error numbers and Windows error numbers. | ||||
| * | | Issue #15785: Modify window.get_wch() API of the curses module: return a | Victor Stinner | 2012-08-28 | 4 | -13/+20 |
| | | | | | | | | | | | | | | | | | | character for most keys, and an integer for special keys, instead of always returning an integer. So it is now possible to distinguish special keys like keypad keys. | ||||
* | | | Issue #15822: Fix installation of lib2to3 grammar pickles to ensure | Ned Deily | 2012-09-09 | 3 | -3/+25 |
| | | | | | | | | | | | | | | | they are created in the install locations and with the proper timestamp. (Solution suggested by MvL) | ||||
* | | | null merge | Ned Deily | 2012-09-09 | 0 | -0/+0 |
|\ \ \ | | |/ | |/| | |||||
| * | | Issue #15822: Fix installation of lib2to3 grammar pickles to ensure | Ned Deily | 2012-09-09 | 3 | -4/+23 |
| | | | | | | | | | | | | | | | they are created in the install locations and with the proper timestamp. (Solution suggested by MvL) | ||||
* | | | Merge #5088: document behavior of optparse defaults with 'append' action. | R David Murray | 2012-09-08 | 1 | -0/+11 |
|\ \ \ | |/ / | |||||
| * | | #5088: document behavior of optparse defaults with 'append' action. | R David Murray | 2012-09-08 | 1 | -0/+11 |
| | | | |||||
* | | | Merge Ezio's 'merge heads'. | R David Murray | 2012-09-08 | 0 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | Merge heads. | Ezio Melotti | 2012-09-08 | 2 | -8/+14 |
| |\ \ | |||||
* | \ \ | #15865: merge with 3.2. | Ezio Melotti | 2012-09-08 | 3 | -12/+16 |
|\ \ \ \ | | |/ / | |/| | | |||||
| * | | | #15865: add "*" in the signature to document keyword-only args in the docs. ↵ | Ezio Melotti | 2012-09-08 | 2 | -8/+14 |
| | | | | | | | | | | | | | | | | Patch by Chris Jerdonek. | ||||
* | | | | Merge #15510: clarify textwrap's handling of whitespace, and add confirming ↵ | R David Murray | 2012-09-08 | 2 | -14/+69 |
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | tests. Patch by Chris Jerdonek. | ||||
| * | | | #15510: clarify textwrap's handling of whitespace, and add confirming tests. | R David Murray | 2012-09-08 | 2 | -14/+69 |
| |/ / | | | | | | | | | | Patch by Chris Jerdonek. | ||||
* | | | merge #15847: allow args to be a tuple in parse_args | R David Murray | 2012-09-08 | 2 | -1/+22 |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | This fixes a regression introduced by the fix for issue #13922. Although args is not documented as being allowed to be a tuple, previously this worked and so naturally there are programs in the field that depend on it. Patch by Zbyszek Jędrzejewski-Szmek. | ||||
| * | | #15847: allow args to be a tuple in parse_args | R David Murray | 2012-09-08 | 2 | -1/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | | This fixes a regression introduced by the fix for issue #13922. Although args is not documented as being allowed to be a tuple, previously this worked and so naturally there are programs in the field that depend on it. Patch by Zbyszek Jędrzejewski-Szmek. | ||||
* | | | Issue #15814: Update whatsnew to the current state of hashing memoryviews. | Stefan Krah | 2012-09-08 | 1 | -3/+2 |
| | | | |||||
* | | | Merge 3.2. | Stefan Krah | 2012-09-08 | 1 | -1/+3 |
|\ \ \ | |/ / | |||||
| * | | Issue #15868: Fix refleak in bytesio.c (Coverity #715365). | Stefan Krah | 2012-09-08 | 1 | -1/+3 |
| | | | |||||
* | | | Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵ | Antoine Pitrou | 2012-09-07 | 2 | -1/+5 |
|\ \ \ | |/ / | | | | | | | | | | | | | opened. This was a regression caused by the hash randomization patch. |