summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Simplify the named tuple template by using the new string format syntax.Raymond Hettinger2011-03-221-15/+15
|
* Improve readability by replacing '\n' in template with real newlines.Raymond Hettinger2011-03-221-9/+19
|
* Issue #11333: Add __slots__ to the collections ABCs.Raymond Hettinger2011-03-222-0/+28
|
* MergeAntoine Pitrou2011-03-220-0/+0
|\
| * Issue #11625: Fix TypoRaymond Hettinger2011-03-222-1/+2
| |\
* | \ MergeAntoine Pitrou2011-03-223-10/+11
|\ \ \ | |/ / |/| |
| * | Use shorter timings in test_concurrent_futures to make it a bit fasterAntoine Pitrou2011-03-221-9/+9
| |/ | | | | | | (it's still very slow)
| * Issue #11625: Fix TypoRaymond Hettinger2011-03-221-1/+2
| |\
| | * Issue #11625: Fix TypoRaymond Hettinger2011-03-221-1/+2
| | |
* | | Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395Victor Stinner2011-03-221-1/+4
| | |
* | | Issue #11628: cmp_to_key should use __slots__.Raymond Hettinger2011-03-222-0/+3
|\ \ \ | |/ /
| * | Issue #11628: cmp_to_key should use __slots__.Raymond Hettinger2011-03-222-0/+3
| | |
* | | Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the fileVictor Stinner2011-03-221-1/+1
| | | | | | | | | | | | cannot be found.
* | | Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200sVictor Stinner2011-03-222-2/+2
| | | | | | | | | | | | | | | I suppose that the author would like to truncate the type name, not get a string of 100/200 characters.
* | | Fix rename spelling error.R David Murray2011-03-211-0/+0
| | |
* | | Dummy merge to overlay fixed email.test move on top of borked move.R David Murray2011-03-210-0/+0
|\ \ \
| * | | Move email tests to Lib/test package and modernize test runner machineryR David Murray2011-03-2154-47/+25
| | | |
* | | | Correctly move email package tests to Lib/test.R David Murray2011-03-2156-47/+22
|/ / /
* | | Prepare for move of email tests.R David Murray2011-03-211-0/+1
| | |
* | | Make regrtest recognize test packages as well as test modules.R David Murray2011-03-211-3/+3
| | |
* | | Always print out the traceback when a test "crashed"Antoine Pitrou2011-03-211-5/+2
|\ \ \ | |/ /
| * | Always print out the traceback when a test "crashed"Antoine Pitrou2011-03-211-5/+2
| | |
* | | Try to make test_import a bit more robustAntoine Pitrou2011-03-211-0/+3
|\ \ \ | |/ /
| * | Try to make test_import a bit more robustAntoine Pitrou2011-03-211-0/+3
| | |
* | | Relax timing check (seen a buildbot failure on this)Antoine Pitrou2011-03-211-1/+1
|\ \ \ | |/ /
| * | Relax timing check (seen a buildbot failure on this)Antoine Pitrou2011-03-211-1/+1
| | |
* | | Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead ofVictor Stinner2011-03-216-65/+36
| | | | | | | | | | | | | | | PyOS_snprintf() to avoid temporary buffer allocated on the stack and a conversion from bytes to Unicode.
* | | Issue #10833: Remove the buffer allocated on the stack, it isn't used anymoreVictor Stinner2011-03-211-1/+0
| | |
* | | Fix timeout error message on windows to not be in milliseconds.Reid Kleckner2011-03-211-3/+4
| | |
* | | Issue #11621: fix bootstrap issue with getopt/gettext (following d3e46930ffe9)Antoine Pitrou2011-03-211-1/+5
| | |
* | | Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead ofVictor Stinner2011-03-216-68/+54
| | | | | | | | | | | | PyOS_snprintf().
* | | _elementtree.c: remove trailing spacesVictor Stinner2011-03-211-19/+19
| | |
* | | Merge to default.Georg Brandl2011-03-211-1/+1
|\ \ \ | |/ /
| * | Merge to 3.2.Georg Brandl2011-03-211-1/+1
| |\ \ | | |/
| | * Fix duplicate word.Georg Brandl2011-03-211-1/+1
| | |
* | | merge 3.2 (already commited before)Victor Stinner2011-03-210-0/+0
|\ \ \ | |/ /
| * | merge 3.1 (already commited before)Victor Stinner2011-03-210-0/+0
| |\ \ | | |/
| | * Issue #8651: PyArg_Parse*() functions raise an OverflowError if the fileVictor Stinner2011-03-213-1/+33
| | | | | | | | | | | | | | | doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes).
* | | Fix some issue references in NEWSÉric Araujo2011-03-211-9/+9
|\ \ \ | |/ /
| * | Fix some issue references in NEWSÉric Araujo2011-03-211-5/+5
| |\ \ | | |/
| | * Fix some issue references in NEWSÉric Araujo2011-03-201-6/+6
| | |
* | | Branch mergeÉric Araujo2011-03-213-9/+13
|\ \ \
| * | | Mark getopt error messages as localizable (fixes #11371).Éric Araujo2011-03-202-7/+11
| | | | | | | | | | | | | | | | Patch by Filip Gruszczyński.
| * | | Fix a typo (see #3080)Éric Araujo2011-03-201-2/+2
| | | |
* | | | merge 3.2Victor Stinner2011-03-212-6/+15
|\ \ \ \ | | |/ / | |/| |
| * | | merge 3.1Victor Stinner2011-03-212-6/+15
| |\ \ \ | | | |/ | | |/|
| | * | Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejarVictor Stinner2011-03-212-9/+18
| | | | | | | | | | | | | | | | for expiration year greater than 2038 on 32-bit systems.
* | | | merge 3.2Victor Stinner2011-03-211-3/+2
|\ \ \ \ | |/ / /
| * | | time.strftime(): replace PyErr_Format() by PyErr_SetString()Victor Stinner2011-03-211-3/+2
| | | | | | | | | | | | | | | | The argument was not used in the format string.
* | | | mergeVictor Stinner2011-03-211-6/+2
|\ \ \ \ | |/ / /