Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 #15814: Document planned restrictions for memoryview hashes in 3.3.1. | Stefan Krah | 2012-09-01 | 1 | -15/+7 |
| | |||||
* | 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 |
| | |||||
* | #15802: Fix test logic in TestMaildir.test_create_tmp | Petri Lehtinen | 2012-09-01 | 2 | -5/+8 |
|\ | |||||
| * | #15802: Fix test logic in TestMaildir.test_create_tmp | Petri Lehtinen | 2012-09-01 | 2 | -5/+8 |
| | | |||||
* | | Merge #12776,#11839: call argparse type function only once. | R David Murray | 2012-08-31 | 4 | -7/+74 |
|\ \ | |/ | | | | | | | | | | | | | | | Before, the type function was called twice in the case where the default was specified and the argument was given as well. This was especially problematic for the FileType type, as a default file would always be opened, even if a file argument was specified on the command line. Patch by Arnaud Fontaine, with additional test by Mike Meyer. | ||||
| * | #12776,#11839: call argparse type function only once. | R David Murray | 2012-08-31 | 4 | -7/+69 |
| | | | | | | | | | | | | | | | | | | Before, the type function was called twice in the case where the default was specified and the argument was given as well. This was especially problematic for the FileType type, as a default file would always be opened, even if a file argument was specified on the command line. Patch by Arnaud Fontaine, with additional test by Mike Meyer. | ||||
* | | Merge whitespace fix from 3.2. | Trent Nelson | 2012-08-31 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Remove trailing whitespace in order to silence warnings on HP-UX. | Trent Nelson | 2012-08-31 | 1 | -4/+4 |
| | | |||||
* | | 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-09-01 | 4 | -21/+35 |
| | | |||||
* | | Issue #15825: fix typo in OrderedDict docs. | Andrew Svetlov | 2012-08-31 | 2 | -1/+2 |
|\ \ | |/ | | | | | Patch by Mike Hoy. | ||||
| * | Issue #15825: fix typo in OrderedDict docs. | Andrew Svetlov | 2012-08-31 | 2 | -1/+2 |
| | | | | | | | | Patch by Mike Hoy. | ||||
* | | Issue #15819: Fix out-of-tree builds from a readonly source. | Trent Nelson | 2012-08-30 | 2 | -4/+9 |
| | | |||||
* | | Block 78809:62044cd5b19b (Issue #15819) from 3.2. | Trent Nelson | 2012-08-30 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #15819: Fix out-of-tree builds from a readonly source. | Trent Nelson | 2012-08-30 | 4 | -4/+62 |
| | | |||||
* | | Closes #10650: Deprecate the watchexp parameter of Decimal.quantize(). | Stefan Krah | 2012-08-30 | 3 | -0/+12 |
| | | |||||
* | | Issue #15724: Add versionchanged tags to the memoryview documentation. | Stefan Krah | 2012-08-30 | 1 | -2/+10 |
| | | |||||
* | | Issue #15800: fix the closing of input / output files when gzip is used as a ↵ | Antoine Pitrou | 2012-08-30 | 1 | -2/+2 |
|\ \ | |/ | | | | | script. | ||||
| * | Issue #15800: fix the closing of input / output files when gzip is used as a ↵ | Antoine Pitrou | 2012-08-30 | 1 | -2/+2 |
| | | | | | | | | script. | ||||
* | | Add missing comma. | Ezio Melotti | 2012-08-29 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Add missing comma. | Ezio Melotti | 2012-08-29 | 1 | -1/+1 |
| | | |||||
* | | move entry to the correct version | Benjamin Peterson | 2012-08-29 | 1 | -3/+3 |
| | | |||||
* | | Issue #15785: Modify window.get_wch() API of the curses module: return a | Victor Stinner | 2012-08-29 | 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. | ||||
* | | merge heads | Benjamin Peterson | 2012-08-28 | 3 | -4/+7 |
|\ \ | |||||
| * | | Issue #15784: Modify OSError.__str__() to better distinguish between | Richard Oudkerk | 2012-08-28 | 3 | -4/+7 |
| | | | | | | | | | | | | errno error numbers and Windows error numbers. | ||||
* | | | merge 3.2 (#15801) | Benjamin Peterson | 2012-08-28 | 3 | -2/+7 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | use the stricter PyMapping_Check (closes #15801) | Benjamin Peterson | 2012-08-28 | 3 | -2/+7 |
| | | |||||
* | | Issue #15794: Relax a test case due to the deadlock detection's ↵ | Antoine Pitrou | 2012-08-28 | 1 | -4/+18 |
| | | | | | | | | conservativeness. | ||||
* | | - fix paste error (whitespace) from previous commit | Matthias Klose | 2012-08-28 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | - fix paste error (whitespace) from previous commit | Matthias Klose | 2012-08-28 | 1 | -1/+1 |
| | | |||||
* | | - Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target. | Matthias Klose | 2012-08-28 | 1 | -1/+6 |
|\ \ | |/ | |||||
| * | - Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target. | Matthias Klose | 2012-08-28 | 1 | -4/+8 |
| | | |||||
* | | #11964: Document a change in v3.2 to the json indent parameter | Petri Lehtinen | 2012-08-28 | 2 | -4/+42 |
|\ \ | |/ | |||||
| * | #11964: Document a change in v3.2 to the json indent parameter | Petri Lehtinen | 2012-08-28 | 2 | -4/+15 |
| | | |||||
* | | Issue #15781: Fix two small race conditions in import's module locking. | Antoine Pitrou | 2012-08-28 | 5 | -3635/+3659 |
| | | |||||
* | | Merge: Fix a JSON doc typo | Petri Lehtinen | 2012-08-27 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix a JSON doc typo | Petri Lehtinen | 2012-08-27 | 1 | -1/+1 |
| | | |||||
* | | #15788: merge with 3.2. | Ezio Melotti | 2012-08-27 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | #15788: fix broken links in subprocess doc. Patch by Chris Rebert. | Ezio Melotti | 2012-08-27 | 1 | -2/+2 |
| | | |||||
* | | Fix typo. | Ezio Melotti | 2012-08-26 | 1 | -1/+1 |
| | | |||||
* | | Merge in changes from 3.3.0 release clone. | Georg Brandl | 2012-08-25 | 9 | -18/+32 |
|\ \ | |||||
| * | | Post-release updates. | Georg Brandl | 2012-08-25 | 2 | -1/+13 |
| | | | |||||
| * | | Added tag v3.3.0rc1 for changeset 8bb5c7bc46ba | Georg Brandl | 2012-08-25 | 1 | -0/+1 |
| | | | |||||
| * | | Bump to 3.3.0rc1.v3.3.0rc1 | Georg Brandl | 2012-08-25 | 6 | -9/+9 |
| | | | |||||
| * | | Update pydoc topics and suspicious markup file. | Georg Brandl | 2012-08-25 | 2 | -9/+10 |
| | | | |||||
* | | | Delete Misc/NEWS record for reverted #15776. | Andrew Svetlov | 2012-08-25 | 1 | -2/+0 |
|/ / | |||||
* | | Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is | Ronald Oussoren | 2012-08-25 | 5 | -7/+128 |
|\ \ | |/ | | | | | | | | | compiled using the clang compiler (merge from 3.2) | ||||
| * | Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is ↵ | Ronald Oussoren | 2012-08-25 | 5 | -7/+128 |
| | | | | | | | | compiled using the clang compiler |