summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
...
* | | merge 3.3Benjamin Peterson2012-10-311-4/+12
|\ \ \ | |/ /
| * | do safety checks on __qualname__ assignmentBenjamin Peterson2012-10-311-0/+8
| | |
| * | don't shadow the __qualname__ descriptor with __qualname__ in the class's ↵Benjamin Peterson2012-10-311-4/+4
| | | | | | | | | | | | __dict__ (closes #16271)
* | | #12890: fix test on windowsR David Murray2012-10-311-6/+4
|\ \ \ | |/ / | | | | | | Patch by Stephen Tonkin.
| * | #12890: fix test on windowsR David Murray2012-10-311-6/+4
| | | | | | | | | | | | Patch by Stephen Tonkin.
* | | Issue #15478: Fix test_os on FreeBSDVictor Stinner2012-10-311-1/+1
| | | | | | | | | | | | | | | Calling OS functions can fail with errors other than FileNotFoundError: a FreeBSD buildbot fails for example with a PermissionError.
* | | Issue #15478: Fix test_os on Windows (os.chown is missing)Victor Stinner2012-10-311-1/+2
| | |
* | | Issue #16351: New function gc.get_stats() returns per-generation collection ↵Antoine Pitrou2012-10-301-0/+26
| | | | | | | | | | | | statistics.
* | | Issue #15478: Raising an OSError doesn't decode or encode the filename anymoreVictor Stinner2012-10-302-0/+82
| | | | | | | | | | | | | | | | | | | | | Pass the original filename argument to OSError constructor, instead of trying to encode it to or decode it from the filesystem encoding. This change avoids an additionnal UnicodeDecodeError on Windows if the filename cannot be decoded from the filesystem encoding (ANSI code page).
* | | Merge: Add test for BZ2Decompressor.decompress("") after end of stream.Nadeem Vawda2012-10-281-0/+1
|\ \ \ | |/ /
| * | Merge: Add test for BZ2Decompressor.decompress("") after end of stream.Nadeem Vawda2012-10-281-0/+1
| |\ \ | | |/
| | * Add test for BZ2Decompressor.decompress("") after end of stream.Nadeem Vawda2012-10-281-0/+1
| | |
* | | Issue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions.Nadeem Vawda2012-10-281-0/+2
| | | | | | | | | | | | Patch by Serhiy Storchaka.
* | | #1492704: Ensure and document backward compatibility of the changeHynek Schlawack2012-10-281-0/+2
| | |
* | | Issue #14700: merge tests from 3.3.Mark Dickinson2012-10-281-0/+27
|\ \ \ | |/ /
| * | Issue #14700: merge tests from 3.2.Mark Dickinson2012-10-281-0/+27
| |\ \ | | |/
| | * Issue #14700: Fix buggy overflow checks for large precision and width in ↵Mark Dickinson2012-10-281-0/+27
| | | | | | | | | | | | new-style and old-style formatting.
* | | merge with 3.3Georg Brandl2012-10-281-2/+2
|\ \ \ | |/ /
| * | merge with 3.2Georg Brandl2012-10-281-2/+2
| |\ \ | | |/
| | * changeset: 80007:49e4541f2aefGeorg Brandl2012-10-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | parent: 80003:be83cbf4a789 parent: 80006:32df036e6b75 user: Georg Brandl <georg@python.org> date: Sun Oct 28 10:50:11 2012 +0100 summary: merge with 3.3
* | | merge #12890: skip tests which fail on windows until fixed or rewritten.R David Murray2012-10-271-2/+2
|\ \ \ | |/ / | | | | | | We may rewrite these using mock per issue 15749.
| * | #12890: skip tests which fail on windows until fixed or rewritten.R David Murray2012-10-271-2/+2
| | | | | | | | | | | | We may rewrite these using mock per issue 15749.
* | | merge #15889: make regrtest --start succeed in more cases.R David Murray2012-10-271-2/+2
|\ \ \ | |/ / | | | | | | Patch by Chris Jerdonek.
| * | merge #15889: make regrtest --start succeed in more cases.R David Murray2012-10-271-2/+2
| |\ \ | | |/ | | | | | | Patch by Chris Jerdonek.
| | * #15889: make regrtest --start succeed in more cases.R David Murray2012-10-271-2/+2
| | | | | | | | | | | | Patch by Chris Jerdonek.
* | | merge #12890: don't emit <p> tags in text mode when logdir specified.R David Murray2012-10-271-8/+25
|\ \ \ | |/ / | | | | | | Patch by Jeff McNeil.
| * | merge #12890: don't emit <p> tags in text mode when logdir specified.R David Murray2012-10-271-8/+25
| |\ \ | | |/ | | | | | | Patch by Jeff McNeil.
* | | merge #15043: Improve test_gdb support of gdb >= 7.4.R David Murray2012-10-271-38/+44
|\ \ \ | |/ / | | | | | | | | | | | | Instead of requiring the tester to manually add the path to the python-gdb.py file in the checkout to their .gdbinit file, add it automatically when invoking gdb in the test.
| * | merge #15043: Improve test_gdb support of gdb >= 7.4.R David Murray2012-10-271-38/+44
| |\ \ | | |/ | | | | | | | | | | | | Instead of requiring the tester to manually add the path to the python-gdb.py file in the checkout to their .gdbinit file, add it automatically when invoking gdb in the test.
| | * #15043: Improve test_gdb support of gdb >= 7.4.R David Murray2012-10-271-38/+46
| | | | | | | | | | | | | | | | | | Instead of requiring the tester to manually add the path to the python-gdb.py file in the checkout to their .gdbinit file, add it automatically when invoking gdb in the test.
* | | Merge 3.3Hynek Schlawack2012-10-271-0/+17
|\ \ \ | |/ /
| * | #16307: Fix multiprocessing.Pool.map_async not calling its callbacksHynek Schlawack2012-10-271-0/+17
| | | | | | | | | | | | Patch by Janne Karila.
| * | Issue #16250: Fix URLError invocation with proper argsSenthil Kumaran2012-10-271-1/+34
| |\ \ | | |/
| | * Issue #16250: Fix URLError invocation with proper args.Senthil Kumaran2012-10-271-0/+35
| | |
* | | merge with 3.3Philip Jenvey2012-10-271-0/+2
|\ \ \ | |/ /
| * | merge with 3.2Philip Jenvey2012-10-271-0/+2
| |\ \ | | |/
| | * bounds check for bad data (thanks amaury)Philip Jenvey2012-10-271-0/+2
| | |
| | * Issue #14398: Fix size truncation and overflow bugs in bz2 module.Nadeem Vawda2012-10-212-1/+39
| | |
* | | Fix the windows buildbot permission error - close the fd of tempfile beffore ↵Senthil Kumaran2012-10-231-6/+7
| | | | | | | | | | | | unlinking
* | | Fix issue16300: addressing the buildbot failures on windowsSenthil Kumaran2012-10-231-2/+1
| | |
* | | skip the file localhost test on windows. Fix it on branch and modify the testSenthil Kumaran2012-10-231-0/+1
| | |
* | | Fix the ResourceWarning in test_urllib.py due changes made for #16301. Patch ↵Senthil Kumaran2012-10-231-1/+2
| | | | | | | | | | | | by Berker Peksag
* | | Issue #16301: Fix the localhost verification in urllib/request.py for ↵Senthil Kumaran2012-10-221-1/+1
| | | | | | | | | | | | file://. Modify tests to use localhost for local temp files, which could make Windows Buildbot (#16300) happy
* | | Issue #16250: Fix the invocations of URLError which had misplaced filename ↵Senthil Kumaran2012-10-221-2/+30
| | | | | | | | | | | | attribute for exception
* | | Issue #10836: Fix exception raised when file not found in urlretrieveSenthil Kumaran2012-10-211-0/+5
| | |
* | | Issue #12692: Fix resource leak in urllib.request.Nadeem Vawda2012-10-211-0/+1
| | |
* | | Try to fix issue #16264 (test_logging failure on some buildbots).Antoine Pitrou2012-10-211-1/+4
| | |
* | | Issue #16220: wsgiref now always calls close() on an iterable response.Antoine Pitrou2012-10-211-88/+18
|\ \ \ | |/ / | | | | | | Patch by Brent Tubbs.
| * | Issue #16220: wsgiref now always calls close() on an iterable response.Antoine Pitrou2012-10-211-88/+18
| |\ \ | | |/ | | | | | | Patch by Brent Tubbs.
| | * Fix whacky spacking in test_wsgirefAntoine Pitrou2012-10-211-57/+0
| | |