summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* null mergeNed Deily2012-09-090-0/+0
|\
| * Issue #15822: Fix installation of lib2to3 grammar pickles to ensureNed Deily2012-09-093-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 Murray2012-09-081-0/+11
|\ \ | |/
| * #5088: document behavior of optparse defaults with 'append' action.R David Murray2012-09-081-0/+11
| |
* | Merge Ezio's 'merge heads'.R David Murray2012-09-080-0/+0
|\ \ | |/
| * Merge heads.Ezio Melotti2012-09-082-8/+14
| |\
* | \ #15865: merge with 3.2.Ezio Melotti2012-09-083-12/+16
|\ \ \ | | |/ | |/|
| * | #15865: add "*" in the signature to document keyword-only args in the docs. ↵Ezio Melotti2012-09-082-8/+14
| | | | | | | | | | | | Patch by Chris Jerdonek.
* | | Merge #15510: clarify textwrap's handling of whitespace, and add confirming ↵R David Murray2012-09-082-14/+69
|\ \ \ | | |/ | |/| | | | | | | | | | tests. Patch by Chris Jerdonek.
| * | #15510: clarify textwrap's handling of whitespace, and add confirming tests.R David Murray2012-09-082-14/+69
| |/ | | | | | | Patch by Chris Jerdonek.
* | merge #15847: allow args to be a tuple in parse_argsR David Murray2012-09-082-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_argsR David Murray2012-09-082-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 Krah2012-09-081-3/+2
| |
* | Merge 3.2.Stefan Krah2012-09-081-1/+3
|\ \ | |/
| * Issue #15868: Fix refleak in bytesio.c (Coverity #715365).Stefan Krah2012-09-081-1/+3
| |
* | Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵Antoine Pitrou2012-09-072-1/+5
|\ \ | |/ | | | | | | | | opened. This was a regression caused by the hash randomization patch.
| * Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵Antoine Pitrou2012-09-072-1/+5
| | | | | | | | | | | | opened. This was a regression caused by the hash randomization patch.
* | Issue #15876: Fix a refleak in the curses moduleRoss Lagerwall2012-09-072-0/+3
| | | | | | | | The refleak occurred when assigning to window.encoding.
* | Fix for fcc629208842Christian Heimes2012-09-071-9/+7
|\ \ | |/ | | | | BSD's make doesn't support some of the features.
| * Fix for fcc629208842Christian Heimes2012-09-071-9/+7
| | | | | | | | BSD's make doesn't support some of the features.
* | Issue #15591 and Issue #11715: silence output of setup.py when make is run ↵Christian Heimes2012-09-061-7/+9
|\ \ | | | | | | | | | with -s option.
| * \ Issue #15591 and Issue #11715: silence output of setup.py when make is run ↵Christian Heimes2012-09-061-7/+9
| |\ \ | | |/ | | | | | | with -s option.
| | * Issue #15591 and Issue #11715: silence output of setup.py when make is run ↵Christian Heimes2012-09-061-7/+9
| | | | | | | | | | | | with -s option.
* | | Fix a typo in the curses docsRoss Lagerwall2012-09-061-1/+1
|/ /
* | Issue #15591: run ctypes' configure in quiet mode when setup.py runs silentlyChristian Heimes2012-09-061-0/+2
|\ \ | |/
| * Issue #15591: run ctypes' configure in quiet mode when setup.py runs silentlyChristian Heimes2012-09-061-0/+2
| |
* | After the jump in line 1051 unicode_tmp is NULL. Found by Coverity.Stefan Krah2012-09-061-1/+1
| |
* | _testbuffer.c: In all current use cases of cmp_structure() dest->format andStefan Krah2012-09-061-3/+2
| | | | | | | | | | src->format are either both NULL or both non-NULL. However, it is safer to generalize the function. Found by Coverity.
* | add whatsnew entry for PEP 421Eric Snow2012-09-061-0/+35
| |
* | Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-057-9/+140
|\ \ | |/ | | | | | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Note that the trashcan functions are part of the stable ABI, therefore they have to be kept around for binary compatibility of extensions.
| * Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-057-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.
* | Issue #15841: The readable(), writable() and seekable() methods of BytesIOAntoine Pitrou2012-09-056-12/+47
|\ \ | |/ | | | | | | and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura.
| * Issue #15841: The readable(), writable() and seekable() methods of BytesIOAntoine Pitrou2012-09-056-12/+47
| | | | | | | | | | and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura.
* | Issue #15855: updated related manual entries.Alexander Belopolsky2012-09-031-1/+7
| |
* | Issue #15855: added docstrings for memoryview methods and data descriptors ↵Alexander Belopolsky2012-09-031-13/+28
| | | | | | | | new in 3.3.
* | Issue #15855: added docstrings for memoryview methods and data descriptors ↵Alexander Belopolsky2012-09-031-10/+41
|\ \ | |/ | | | | (merge 3.2).
| * Issue #15855: added docstrings for memoryview methods and data descriptors.Alexander Belopolsky2012-09-031-11/+43
| |
* | #15557,#15447,#15509: webbrowser test suite added.R David Murray2012-09-032-0/+195
| | | | | | | | | | Initial patch by Anton Barkovsky, refined a bit by me to further subdivide the test methods. Provides tests for the previous two bug fix commits.
* | #15447: Use subprocess.DEVNULL in webbrowser, instead of openingR David Murray2012-09-032-2/+5
| | | | | | | | | | | | | | | | This eliminates a ResourceWarning, since before webbrowser was explicitly opening os.devnull and then leaving it open. Tests to follow. Patch by Anton Barkovsky.
* | 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
|\ \ \ | |/ / |/| / | |/