summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Remove unstable SSL tests in the absence of ssl.OP_NO_{SSLv2,SSLv3,TLSv1}Antoine Pitrou2011-10-301-12/+2
|
* bring is_integer into tested existenceBenjamin Peterson2011-10-281-0/+6
|
* - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.Barry Warsaw2011-10-281-2/+4
|
* adjust for change in assert bytecodeBenjamin Peterson2011-10-271-4/+5
|
* add a test for an assertion with tuple msgBenjamin Peterson2011-10-271-0/+6
|
* Issue #10860: Skip the new test if HTTPS is not availablePetri Lehtinen2011-10-261-0/+1
|
* Issue #10332: multiprocessing: fix a race condition when a Pool is closedCharles-François Natali2011-10-241-0/+14
| | | | before all tasks have completed.
* Issue #1548891: The cStringIO.StringIO() constructor now encodes unicodeAntoine Pitrou2011-10-221-0/+21
| | | | | arguments with the system default encoding just like the write() method does, instead of converting it to a raw buffer.
* Oops, forgot issue numberAntoine Pitrou2011-10-211-1/+1
|
* Add test for fix of issue #1730114.Antoine Pitrou2011-10-211-0/+8
|
* Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelatedSenthil Kumaran2011-10-191-0/+10
| | | | | exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen.
* Fix closes Issue12529 - cgi.parse_header failure on double quotes andSenthil Kumaran2011-10-191-0/+3
| | | | semicolons. Patch by Ben Darnell and Petri Lehtinen.
* Remove duplication.Ezio Melotti2011-10-192-3/+3
|
* Fixes #10860: Handle empty port after port delimiter in httplibŁukasz Langa2011-10-181-1/+24
| | | | | | Thanks, Shawn Ligocki! 3.x version will come as a separate patch.
* PyEval_CallObject requires a tuple of args (closes #13186)Benjamin Peterson2011-10-151-0/+13
|
* Branch mergeÉric Araujo2011-10-091-5/+8
|\
| * Fix test_sysconfig when prefix != exec-prefix (#9100).Éric Araujo2011-10-081-5/+8
| | | | | | | | Reported by Zsolt Cserna.
* | Issue #7367: Ensure test directory always gets removed.Ned Deily2011-10-071-2/+2
|/
* Issue #7367: Add test case to test_pkgutil for walking path withNed Deily2011-10-061-0/+11
| | | | an unreadable directory.
* Issue #7425: Refactor test_pydoc test case for '-k' behavior and addNed Deily2011-10-061-49/+63
| | | | new test cases for importing bad packages and unreadable packages dirs.
* Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycleCharles-François Natali2011-10-061-0/+15
| | | | | would be finalized after the reference to its underlying BufferedRWPair's writer got cleared by the GC.
* Branch mergeÉric Araujo2011-10-061-1/+1
|\
| * Fix typo and case in a recently added testÉric Araujo2011-10-051-1/+1
| |
* | Enable the only tests for sys.gettraceAmaury Forgeot d'Arc2011-10-051-2/+2
|/
* Avoid testing stuff that's been fixed in 2.7 on older PythonsAntoine Pitrou2011-10-041-0/+4
|
* Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-0/+21
| | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
* #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-011-0/+7
| | | | Patch by Dan Kenigsberg.
* Issue #13034: When decoding some SSL certificates, the subjectAltName ↵Antoine Pitrou2011-10-012-2/+53
| | | | extension could be unreported.
* Issue #7732: Fix a crash on importing a module if a directory has the same nameVictor Stinner2011-09-231-0/+8
| | | | | | | | than a Python module (e.g. "__init__.py"): don't close the file twice. PyFile_FromFile() does also close the file if PyString_FromString() failed. It did already close the file on fill_file_fields() error (e.g. if the file is a directory).
* Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead ofVictor Stinner2011-09-221-0/+3
| | | | failing with a UnicodeDecodeError.
* Fix a race condition in test_socket.ThreadableTest: the client is reportedCharles-François Natali2011-09-211-1/+1
| | | | ready before having been set up.
* Issue #12981: test_multiprocessing: catch ImportError when importingCharles-François Natali2011-09-211-2/+13
| | | | | multiprocessing.reduction, which may not be available (e.g. if the OS doesn't support FD passing over Unix domain sockets).
* Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵Jesus Cea2011-09-211-0/+17
| | | | was actually received
* Port the fix for Issue12924 (missing quote_plus) to 2.7 branch.Senthil Kumaran2011-09-121-0/+1
|
* Fix issue #12948: multiprocessing test failures can hang the buildbotsJesus Cea2011-09-091-2/+0
|
* Close issue #12948: multiprocessing test failures can hang the buildbotsJesus Cea2011-09-091-3/+27
|
* Fix test_sysconfig when run from a Python installed under /site (#10086).Éric Araujo2011-08-311-2/+2
| | | | Patch by Hallvard B Furuseth.
* Issue #12786: Set communication pipes used by subprocess.Popen CLOEXEC to avoidCharles-François Natali2011-08-251-0/+31
| | | | them being inherited by other subprocesses.
* Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.Antoine Pitrou2011-08-231-1/+82
| | | | Also added some tests.
* Issue #12821: Fix test_fcntl failures on OpenBSD 5.Charles-François Natali2011-08-231-6/+2
|
* #9200: backport tests but run them on wide builds only.Ezio Melotti2011-08-221-2/+185
|
* Issue #12213: Fix a buffering bug with interleaved reads and writes thatAntoine Pitrou2011-08-201-2/+43
| | | | could appear on io.BufferedRandom streams.
* Branch mergeÉric Araujo2011-08-191-0/+4
|\
| * Guard shutil._make_archive against a logger=None argument.Éric Araujo2011-08-191-0/+4
| | | | | | | | | | Backporting two lines from the 3.x tests was enough to trigger the bug. I also took the opportunity of making the logging call lazy.
* | Fix resource leaks in test_subprocess.Nadeem Vawda2011-08-191-0/+4
| |
* | Issue #12650: fix failures on some buildbots, when a subprocess takes a longCharles-François Natali2011-08-181-12/+0
|/ | | | time to spawn.
* Issue #12650: only run the tests on Unix.Charles-François Natali2011-08-181-58/+58
|
* Issue #12650: Fix a race condition where a subprocess.Popen could leakCharles-François Natali2011-08-181-0/+57
| | | | resources (FD/zombie) when killed at the wrong time.
* The simplest possible fix for the regression in bug 12752 by encoding unicodesBarry Warsaw2011-08-151-0/+5
| | | | to 8-bit strings.
* #12266: move the tests in test_unicode.Ezio Melotti2011-08-152-17/+19
|