summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* __class__ of a __class__ check worked only by chance.Łukasz Langa2011-04-291-1/+1
|
* TestChainMap was not previously used. Minor corrections applied.Łukasz Langa2011-04-291-8/+8
|
* Add WSANO_DATA to possible errors triggered by getaddrinfo (Windows)Antoine Pitrou2011-04-281-0/+2
|
* Closes #11324: ConfigParser(interpolation=None) doesn't work.Łukasz Langa2011-04-281-0/+38
| | | | Initial patches by Tobias Brink. Thanks!
* Style updates for the #11670 solution after post-commit review by Ezio Melotti:Łukasz Langa2011-04-281-7/+7
| | | | | | http://mail.python.org/pipermail/python-checkins/2011-April/104688.html Thanks!
* merge from 3.1Senthil Kumaran2011-04-281-0/+1
|\
| * skip the extractall test on platforms where os.symlink is not available.Senthil Kumaran2011-04-281-0/+1
| |
* | Closes #11858: configparser.ExtendedInterpolation and section case.Łukasz Langa2011-04-281-3/+67
| | | | | | | | Patch by ゆかり ぴんく魔女. Thanks!
* | merge from 3.1Senthil Kumaran2011-04-281-0/+28
|\ \ | |/
| * Add tests for tarfile extractall feature when with symlinksSenthil Kumaran2011-04-281-0/+27
| |
* | #11926: merge with 3.1.Ezio Melotti2011-04-281-0/+7
|\ \ | |/
| * #11926: add missing keywords to help("keywords").Ezio Melotti2011-04-281-1/+7
| |
* | #11938: Fix duplicated test name in test_inspect. Patch by Andreas Stührk.Ezio Melotti2011-04-271-1/+1
| |
* | Closes #11670: configparser read_file now iterates over f.Łukasz Langa2011-04-271-0/+54
| |
* | Merge 3.1Éric Araujo2011-04-271-5/+0
|\ \ | |/
| * Branch mergeÉric Araujo2011-04-271-5/+0
| |\
| | * Remove obsolete/duplicate docstringÉric Araujo2011-04-241-5/+0
| | |
| * | #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings ↵Ezio Melotti2011-04-271-0/+35
| | | | | | | | | | | | are too long.
* | | #6780: merge with 3.1.Ezio Melotti2011-04-262-0/+18
|\ \ \ | |/ /
| * | #6780: fix starts/endswith error message to mention that tuples are accepted ↵Ezio Melotti2011-04-262-0/+27
| |/ | | | | | | too.
* | Issue #11919: try to fix test_imp failure on some buildbots.Antoine Pitrou2011-04-251-1/+2
| |
* | Issue #10914: Add a minimal embedding test to test_capi.Antoine Pitrou2011-04-251-3/+32
| |
* | Issue #9319: Fix the unit testVictor Stinner2011-04-221-1/+2
| |
* | Issue #9319: Fix a crash on parsing a Python source code without encodingVictor Stinner2011-04-221-0/+3
| | | | | | | | | | cookie and not valid in UTF-8: use "<file>" as the filename instead of reading from NULL.
* | Use non-deprecated method name.Ezio Melotti2011-04-202-14/+14
| |
* | MERGE: startswith and endswith don't accept None as slice index. Patch by ↵Jesus Cea2011-04-202-0/+119
|\ \ | |/ | | | | Torsten Becker. (closes #11828)
| * startswith and endswith don't accept None as slice index. Patch by Torsten ↵Jesus Cea2011-04-202-0/+119
| | | | | | | | Becker. (closes #11828)
* | Merge test_startfile fix from 3.1.Nadeem Vawda2011-04-181-0/+5
|\ \ | |/
| * Fix sporadic failure in test_startfile.Nadeem Vawda2011-04-181-0/+5
| | | | | | | | | | | | Wait for the child process to terminate before ending the test, so that the regrtest cleanup code doesn't get an error when it tries to delete the temporary CWD.
* | Issue #11790: Fix sporadic failures in ↵Antoine Pitrou2011-04-161-1/+7
| | | | | | | | test_multiprocessing.WithProcessesTestCondition.
* | Fix possible "file already exists" error when running the tests in parallel.Antoine Pitrou2011-04-161-1/+5
| | | | | | | | | | | | This is a perfect example of LBYL going wrong: that code could be executed by several workers in parallel, and os.mkdir() attempted on the same path by multiple processes.
* | Issue #11852: Add missing imports and update tests.Vinay Sajip2011-04-151-0/+16
| |
* | Fix minor subclassing issue with collections.CounterRaymond Hettinger2011-04-151-0/+9
|\ \ | |/
| * Fix minor subclassing issue with collections.CounterRaymond Hettinger2011-04-151-0/+9
| |
* | #5057: Merge with 3.1.Ezio Melotti2011-04-151-0/+18
|\ \ | |/
| * Issue #5057: fix a bug in the peepholer that led to non-portable pyc files ↵Ezio Melotti2011-04-151-0/+18
| | | | | | | | between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. "\U00012345"[0]).
* | merge from 3.1Senthil Kumaran2011-04-151-0/+5
|\ \ | |/
| * Issue #11467: Fix urlparse behavior when handling urls which contains scheme ↵Senthil Kumaran2011-04-151-0/+5
| | | | | | | | specific part only digits.
* | #11845: Fix typo in rangeobject.c that caused a crash in ↵Ezio Melotti2011-04-151-0/+9
| | | | | | | | compute_slice_indices. Patch by Daniel Urban.
* | merge from 3.1Senthil Kumaran2011-04-141-0/+18
|\ \ | |/
| * Fix Issue11474 - fix url2pathname() handling of '/C|/' on WindowsSenthil Kumaran2011-04-141-0/+18
| |
* | Issue 3051: make pure python code pass the same tests as the C version.Raymond Hettinger2011-04-131-11/+5
| |
* | Merge with 3.1.Ezio Melotti2011-04-133-6/+22
|\ \ | |/
* | Merge #10019: Fix regression relative to 2.6: add newlines if indent=0R David Murray2011-04-131-0/+16
|\ \ | |/ | | | | Patch by Amaury Forgeot d'Arc, updated by Sando Tosi.
* | merge 3.1Benjamin Peterson2011-04-121-0/+4
|\ \ | |/
| * merge headsBenjamin Peterson2011-04-123-2/+25
| |\
| * | make assigning to a bytes literal a syntax error (closes #11506)Benjamin Peterson2011-04-121-0/+4
| | |
* | | merge from 3.1Senthil Kumaran2011-04-123-2/+25
|\ \ \ | | |/ | |/|
| * | Fix Issue11703 - urllib2.geturl() does not return correct url when the ↵Senthil Kumaran2011-04-123-2/+25
| |/ | | | | | | original url contains #fragment. Patch Contribution by Santoso Wijaya.
| * Issue 11747: Fix output format for context diffs.Raymond Hettinger2011-04-121-1/+64
| |