summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge #15509: If %action substitution produces a null string, drop it.R David Murray2012-09-032-2/+12
|\ | | | | | | | | | | | | Patch by Anton Barkovsky, comment addition by me. This shows up as a bug in 3.3 because the definition for Chrome produces such an empty string. Tests will follow.
| * #15509: If %action substitution produces a null string, drop it.R David Murray2012-09-032-2/+12
| | | | | | | | | | | | | | | | Patch by Anton Barkovsky, comment addition by me. This showed up as a bug in 3.3 because the definition for Chrome produced such an empty string. This fix is tested in 3.3+; backporting the new test suite is more trouble than it is worth.
* | Issue #15814: Add NEWS entry regarding intended memoryview hashing restrictionsNick Coghlan2012-09-031-0/+8
| |
* | merge 3.2Benjamin Peterson2012-09-021-2/+2
|\ \ | |/
| * put * in the normal placeBenjamin Peterson2012-09-021-2/+2
| |
* | get rid of ast_error_finish by passing the compiling struct to ast_errorBenjamin Peterson2012-09-022-119/+75
| |
* | merge 3.2Benjamin Peterson2012-09-021-2/+2
|\ \ | |/
| * move variable decl to the top of the functionBenjamin Peterson2012-09-021-2/+2
| |
* | merge headsBenjamin Peterson2012-09-021-1/+1
|\ \
| * | Fix C++-style comment (xlc compilation failure)Antoine Pitrou2012-09-021-1/+1
| | |
* | | merge 3.2 (#15846)Benjamin Peterson2012-09-023-0/+17
|\ \ \ | |/ / |/| / | |/
| * prevert ast errors from being normalized before ast_error_finish is called ↵Benjamin Peterson2012-09-023-0/+17
| | | | | | | | (closes #15846)
* | Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews.Stefan Krah2012-09-021-6/+8
| |
* | Make super() internal errors RuntimeError instead of SystemError (closes #15839)Benjamin Peterson2012-09-023-7/+24
| |
* | Close #14223: Fix window.addch(curses.ACS_HLINE)Victor Stinner2012-09-012-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 Krah2012-09-011-15/+7
| |
* | Add missing unit.Stefan Krah2012-09-011-1/+1
| |
* | Compile _decimal without asserts and update benchmark results.Stefan Krah2012-09-012-2/+2
| |
* | #15802: Fix test logic in TestMaildir.test_create_tmpPetri Lehtinen2012-09-012-5/+8
|\ \ | |/
| * #15802: Fix test logic in TestMaildir.test_create_tmpPetri Lehtinen2012-09-012-5/+8
| |
* | Merge #12776,#11839: call argparse type function only once.R David Murray2012-09-014-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 Murray2012-09-014-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 Nelson2012-08-311-4/+4
|\ \ | |/
| * Remove trailing whitespace in order to silence warnings on HP-UX.Trent Nelson2012-08-311-4/+4
| |
* | Issue #15828: Don't try to close a file if imp.find_module() doesn'tBrett Cannon2012-08-311-1/+3
| | | | | | | | return one.
* | Issue #15828: Restore support for C extension modules in imp.load_module()Nick Coghlan2012-08-314-21/+35
| |
* | Issue #15825: fix typo in OrderedDict docs.Andrew Svetlov2012-08-312-1/+2
|\ \ | |/ | | | | Patch by Mike Hoy.
| * Issue #15825: fix typo in OrderedDict docs.Andrew Svetlov2012-08-312-1/+2
| | | | | | | | Patch by Mike Hoy.
* | Issue #15819: Fix out-of-tree builds from a readonly source.Trent Nelson2012-08-302-4/+9
| |
* | Block 78809:62044cd5b19b (Issue #15819) from 3.2.Trent Nelson2012-08-300-0/+0
|\ \ | |/
| * Issue #15819: Fix out-of-tree builds from a readonly source.Trent Nelson2012-08-304-4/+62
| |
* | Closes #10650: Deprecate the watchexp parameter of Decimal.quantize().Stefan Krah2012-08-303-0/+12
| |
* | Issue #15724: Add versionchanged tags to the memoryview documentation.Stefan Krah2012-08-301-2/+10
| |
* | Issue #15800: fix the closing of input / output files when gzip is used as a ↵Antoine Pitrou2012-08-291-2/+2
|\ \ | |/ | | | | script.
| * Issue #15800: fix the closing of input / output files when gzip is used as a ↵Antoine Pitrou2012-08-291-2/+2
| | | | | | | | script.
* | Add missing comma.Ezio Melotti2012-08-291-1/+1
|\ \ | |/
| * Add missing comma.Ezio Melotti2012-08-291-1/+1
| |
* | move entry to the correct versionBenjamin Peterson2012-08-291-3/+3
| |
* | Issue #15785: Modify window.get_wch() API of the curses module: return aVictor Stinner2012-08-284-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 headsBenjamin Peterson2012-08-283-4/+7
|\ \
| * | Issue #15784: Modify OSError.__str__() to better distinguish betweenRichard Oudkerk2012-08-283-4/+7
| | | | | | | | | | | | errno error numbers and Windows error numbers.
* | | merge 3.2 (#15801)Benjamin Peterson2012-08-283-2/+7
|\ \ \ | |/ / |/| / | |/
| * use the stricter PyMapping_Check (closes #15801)Benjamin Peterson2012-08-283-2/+7
| |
* | Issue #15794: Relax a test case due to the deadlock detection's ↵Antoine Pitrou2012-08-281-4/+18
| | | | | | | | conservativeness.
* | - fix paste error (whitespace) from previous commitMatthias Klose2012-08-281-1/+1
|\ \ | |/
| * - fix paste error (whitespace) from previous commitMatthias Klose2012-08-281-1/+1
| |
* | - Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.Matthias Klose2012-08-281-1/+6
|\ \ | |/
| * - Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.Matthias Klose2012-08-281-4/+8
| |
* | #11964: Document a change in v3.2 to the json indent parameterPetri Lehtinen2012-08-282-4/+42
|\ \ | |/
| * #11964: Document a change in v3.2 to the json indent parameterPetri Lehtinen2012-08-282-4/+15
| |