summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10278: Be more explicit in tests than wallclock() is monotonic (cannotVictor Stinner2012-01-201-4/+9
| | | | go backward)
* Improve exception text. Closes issue 13811.Eric V. Smith2012-01-201-2/+2
|
* check after comments, too (#13832)Benjamin Peterson2012-01-192-7/+19
|
* Issue #13605: merge with 3.2Sandro Tosi2012-01-191-5/+5
|\
| * Issue #13605: more meaningful example + fixesSandro Tosi2012-01-191-5/+5
| |
* | Issue #13605: merge with 3.2Sandro Tosi2012-01-191-0/+11
|\ \ | |/
| * Issue #13605: add documentation for nargs=argparse.REMAINDERSandro Tosi2012-01-191-0/+11
| |
* | don't leak nodeBenjamin Peterson2012-01-191-0/+1
| |
* | only check this when parsing pythonBenjamin Peterson2012-01-191-0/+2
| |
* | Issue #11948: merge with 3.2Sandro Tosi2012-01-191-18/+16
|\ \ | |/
| * Issue #11948: clarify modules search pathSandro Tosi2012-01-191-18/+16
| |
* | Issue #12705: Raise SyntaxError when compiling multiple statements as single ↵Meador Inge2012-01-195-0/+52
| | | | | | | | interactive statement
* | Issue #2134: Add support for tokenize.TokenInfo.exact_type.Meador Inge2012-01-194-3/+187
| |
* | Null mergeMeador Inge2012-01-190-0/+0
|\ \ | |/
| * Issue #2134: Clarify token.OP handling rationale in tokenize documentation.Meador Inge2012-01-192-0/+9
| |
* | improve casefold/lower/upper docsBenjamin Peterson2012-01-191-2/+18
| |
* | Be more lenient in test_wallclock (issue #10278).Antoine Pitrou2012-01-181-2/+2
| |
* | Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵Antoine Pitrou2012-01-182-9/+3
|\ \ | |/ | | | | registry.
| * Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵Antoine Pitrou2012-01-182-9/+3
| | | | | | | | registry.
* | Finally fix all test_capi refleaksAntoine Pitrou2012-01-181-9/+16
| |
* | Fix some of the remaining test_capi leaksAntoine Pitrou2012-01-181-3/+5
| |
* | Fix some of the remaining test_capi refleaksAntoine Pitrou2012-01-181-0/+2
| |
* | Fix some of the refleaks in test_capi (ported from 3.2)Antoine Pitrou2012-01-181-3/+7
|\ \ | |/
| * Fix refleaks in test_capiAntoine Pitrou2012-01-181-3/+7
| | | | | | | | (this was easier than I thought!)
* | Fix the builtin module initialization code to store the init function for ↵Antoine Pitrou2012-01-182-0/+7
|\ \ | |/ | | | | future reinitialization.
| * Fix the builtin module initialization code to store the init function for ↵Antoine Pitrou2012-01-182-0/+7
| | | | | | | | future reinitialization.
* | Add part of test_inspect test from 2.7Antoine Pitrou2012-01-181-0/+11
|\ \ | |/
| * Add part of test_inspect test from 2.7Antoine Pitrou2012-01-181-0/+11
| |
* | Merge refleak fixes from 3.2Antoine Pitrou2012-01-182-75/+64
|\ \ | |/
| * Fix the _io module leaking references when a sub-interpreter is created.Antoine Pitrou2012-01-181-48/+36
| |
| * Fix leaking a RuntimeError objects when creating sub-interpretersAntoine Pitrou2012-01-181-21/+23
| |
* | Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-181-1/+2
|\ \ | |/
| * Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-181-1/+2
| |
* | Issue #5689: Avoid excessive memory usage by using the default lzma preset.Lars Gustäbel2012-01-181-5/+1
| |
* | Merge: #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-183-2/+15
|\ \ | |/
| * Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-183-2/+15
| |
* | MERGE: And yet another emergency fix for #13803 bootstrap issue: Under ↵Jesus Cea2012-01-182-2/+2
|\ \ | |/ | | | | Solaris, distutils doesn't include bitness in the directory name
| * And yet another emergency fix for #13803 bootstrap issue: Under Solaris, ↵Jesus Cea2012-01-182-2/+2
| | | | | | | | distutils doesn't include bitness in the directory name
* | MERGE: Yet another emergency fix for #13803 bootstrap issue: Under Solaris, ↵Jesus Cea2012-01-181-0/+5
|\ \ | |/ | | | | distutils doesn't include bitness in the directory name
| * Yet another emergency fix for #13803 bootstrap issue: Under Solaris, ↵Jesus Cea2012-01-181-0/+5
| | | | | | | | distutils doesn't include bitness in the directory name
* | #13665: merge with 3.2.Ezio Melotti2012-01-181-1/+1
|\ \ | |/
| * #13665: s/string/bytes/ in error message.Ezio Melotti2012-01-181-1/+1
| |
* | Use ASCII quotes and fix markup.Ezio Melotti2012-01-182-5/+5
| |
* | MERGE: Emergency fix for #13803 bootstrap issue: Under Solaris, distutils ↵Jesus Cea2012-01-181-2/+5
|\ \ | |/ | | | | doesn't include bitness in the directory name
| * Emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't ↵Jesus Cea2012-01-181-2/+5
| | | | | | | | include bitness in the directory name
* | MERGE: Closes #13803: Under Solaris, distutils doesn't include bitness in ↵Jesus Cea2012-01-182-0/+5
|\ \ | |/ | | | | the directory name
| * Closes #13803: Under Solaris, distutils doesn't include bitness in the ↵Jesus Cea2012-01-182-0/+5
| | | | | | | | directory name
* | MergeAntoine Pitrou2012-01-188-9/+96
|\ \
| * | Issue #10278: fix a typo in the docVictor Stinner2012-01-181-1/+1
| | |
| * | Close #10278: Add time.wallclock() function, monotonic clock.Victor Stinner2012-01-185-5/+75
| | |