summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Rename unicode_write_t structure and its methods to "_PyUnicodeWriter"Victor Stinner2012-05-092-25/+25
| |
* | Issue #14744: Inline unicode_writer_write_char() and unicode_write_str()Victor Stinner2012-05-092-76/+79
| | | | | | | | | | Optimize also PyUnicode_Format(): call unicode_writer_prepare() only once per argument.
* | Null merge for issue #14761.Antoine Pitrou2012-05-090-0/+0
|\ \ | |/
| * Issue #14761: Fix potential leak on an error case in the import machinery.Antoine Pitrou2012-05-093-1/+5
| |
* | Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c.Larry Hastings2012-05-091-18/+8
| |
* | Merge: Improve the grammar of a non-sentence.R David Murray2012-05-091-2/+2
|\ \ | |/
| * Improve the grammar of a non-sentence.R David Murray2012-05-091-2/+2
| |
* | unicode_writer_finish() checks string consistencyVictor Stinner2012-05-092-0/+5
| |
* | Issue #14727: Fix race in test_multiprocessingRichard Oudkerk2012-05-081-1/+1
| |
* | Minor fix for test_multiprocessingRichard Oudkerk2012-05-081-1/+1
| |
* | merge 3.2 (#14752)Benjamin Peterson2012-05-081-2/+4
|\ \ | |/
| * fix possible refleak (closes #14752)Benjamin Peterson2012-05-081-2/+4
| |
* | Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem().Larry Hastings2012-05-081-0/+1
|\ \ | |/
| * Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.Larry Hastings2012-05-081-0/+1
| |
* | merge 3.2Benjamin Peterson2012-05-081-9/+0
|\ \ | |/
| * remove basically bitrotted XXXsBenjamin Peterson2012-05-081-9/+0
| |
* | explicitly set UnsupportedOperation's module rather than relying on ↵Benjamin Peterson2012-05-081-0/+3
| | | | | | | | incorrect globals on startup (closes #14745)
* | Backout ab500b297900: the check for integer overflow is wrongVictor Stinner2012-05-071-4/+2
| | | | | | | | | | | | Issue #14716: Change integer overflow check in unicode_writer_prepare() to compute the limit at compile time instead of runtime. Patch writen by Serhiy Storchaka.
* | Issue #14742: Don't include DirectoryTestCase from test_unparse in ↵Mark Dickinson2012-05-071-1/+1
| | | | | | | | test_tools until we can speed it up.
* | Issue #14583: Fix importlib bug when a package's __init__.py would first ↵Antoine Pitrou2012-05-076-308/+374
| | | | | | | | import one of its modules then raise an error.
* | Issue #14741: Merge fix from 3.2.Mark Dickinson2012-05-073-5/+5
|\ \ | |/
| * Issue #14741: Fix missing support for ellipsis in parser module.Mark Dickinson2012-05-073-5/+5
| |
* | Issue #14697: Merge fix from 3.2.Mark Dickinson2012-05-073-21/+105
|\ \ | |/
| * Issue #14697: Fix missing parser module support for set displays and set ↵Mark Dickinson2012-05-073-21/+105
| | | | | | | | comprehensions.
* | Issue #14716: Change integer overflow check in unicode_writer_prepare()Victor Stinner2012-05-071-2/+4
| | | | | | | | | | to compute the limit at compile time instead of runtime. Patch writen by Serhiy Storchaka.
* | Close #14716: str.format() now uses the new "unicode writer" API instead of theVictor Stinner2012-05-072-170/+148
| | | | | | | | PyAccu API. For example, it makes str.format() from 25% to 30% faster on Linux.
* | Issue #14701: Merge fix from 3.2.Mark Dickinson2012-05-073-12/+21
|\ \ | |/
| * Issue #14701: Add missing support for 'raise ... from' in parser module.Mark Dickinson2012-05-073-12/+21
| |
* | Issue #14700: Fix two broken and undefined-behaviour-inducing overflow ↵Mark Dickinson2012-05-073-2/+9
| | | | | | | | checks in old-style string formatting. Thanks Serhiy Storchaka for report and original patch.
* | Issue #14705: Added support for the new 'p' format unit to skipitem().Larry Hastings2012-05-071-0/+1
| |
* | Add John Regehr to Misc/ACKS for his help with finding integer overflows ↵Mark Dickinson2012-05-071-0/+1
| | | | | | | | (issue #9530).
* | Issue #14695: Run Tools/parser/test_unparse.py as part of test_tools.Mark Dickinson2012-05-071-0/+5
| |
* | Merge Misc/NEWS issue number fix from 3.2Mark Dickinson2012-05-071-1/+1
|\ \ | |/
| * Fix issue number in Misc/NEWS.Mark Dickinson2012-05-071-1/+1
| |
* | Add Misc/NEWS entry for rev b4a1d9287780Richard Oudkerk2012-05-061-0/+3
| |
* | Fix buildbot failures in test_lzma.Nadeem Vawda2012-05-061-7/+6
| |
* | Rename lzma.check_is_supported() to is_check_supported() to avoid ↵Nadeem Vawda2012-05-064-12/+12
| | | | | | | | grammatical confusion.
* | Add lzma.{encode,decode}_filter_properties().Nadeem Vawda2012-05-064-4/+252
| |
* | Merge with 3.2.Georg Brandl2012-05-061-3/+3
|\ \ | |/
| * Fix document title for Sphinx.Georg Brandl2012-05-061-3/+3
| |
* | Really fix test_gzip failures on Windows.Nadeem Vawda2012-05-061-5/+7
| |
* | Issue #14965: Bring Tools/parser/unparse.py up to date with the Python 3.3. ↵Mark Dickinson2012-05-063-19/+60
|\ \ | |/ | | | | Grammar.
| * Issue #14965: Fix missing support for starred assignments in ↵Mark Dickinson2012-05-063-0/+17
| | | | | | | | Tools/parser/unparse.py.
* | Make test_multiprocessing more lenient about another timeout checkRichard Oudkerk2012-05-061-4/+7
| |
* | Make AcquirerProxy.acquire() support timeout argumentRichard Oudkerk2012-05-061-2/+3
| |
* | Fix too early decrefs.Antoine Pitrou2012-05-061-2/+2
| |
* | Fix test_gzip failures on Windows.Nadeem Vawda2012-05-061-3/+3
| |
* | #14034: merge indentation fixes from 3.2.Ezio Melotti2012-05-061-78/+78
|\ \ | |/
| * #14034: fix indentation.Ezio Melotti2012-05-061-78/+78
| |
* | Merge heads.Ezio Melotti2012-05-064-0/+776
|\ \