summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Issue 5354: Provide a standardised testing mechanism for doing fresh imports ...Nick Coghlan2009-04-113-35/+76
* Issue #2170: refactored xml.dom.minidom.normalize, increasing bothR. David Murray2009-04-091-0/+161
* Issue 5665: add more pickling tests.Collin Winter2009-04-095-21/+428
* - Make timing assertions very generous (a la test_timeout.py)Jack Diederich2009-04-071-49/+60
* eliminate more race conditions in telnetlib testsJack Diederich2009-04-071-51/+58
* Issue #5695: Minor tweak to improve the code as suggested by Brett Cannon and...Vinay Sajip2009-04-071-1/+1
* revert unrelated change to test_telnetlibBenjamin Peterson2009-04-071-1/+1
* fix since difference formating of SyntaxErrorsBenjamin Peterson2009-04-072-5/+9
* fix syntax tests after formatting changeBenjamin Peterson2009-04-072-44/+88
* - Issue #2254: Fix CGIHTTPServer information disclosure. Relative paths areGregory P. Smith2009-04-061-0/+46
* test the telnetlib.Telnet interface more thoroughlyJack Diederich2009-04-061-3/+276
* Fixes issue5705: os.setuid() and friends did not accept the same range ofGregory P. Smith2009-04-051-1/+44
* Adding assertIs and assertIsNot methods to unittest.TestCaseMichael Foord2009-04-051-0/+23
* #5471: fix expanduser() for $HOME set to "/".Georg Brandl2009-04-051-0/+5
* #1326077: fix traceback formatting of SyntaxErrors. This fixes two differenc...Georg Brandl2009-04-051-12/+17
* Issue #5695: Moved logging.captureWarnings() call inside with statement in Wa...Vinay Sajip2009-04-051-1/+1
* No behavior change.Hirokazu Yamamoto2009-04-041-2/+2
* Have namedtuple's field renamer assign names thatRaymond Hettinger2009-04-021-6/+6
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-021-0/+328
* sys.long_info attributes should be ints, not longsMark Dickinson2009-04-021-3/+5
* Add missing iteritems() call to the for loop in mailbox.MH.get_message().R. David Murray2009-04-021-0/+6
* Store the functions in the _type_equality_funcs as wrapped objects that are d...Michael Foord2009-04-021-0/+12
* Add custom initializer argument to multiprocess.Manager*, courtesy of lekmaJesse Noller2009-04-021-1/+31
* Better exception messages for unittest assert methods.Michael Foord2009-04-021-1/+171
* Fixing the issue4860. Escaping embedded '"' character in js_output() method o...Senthil Kumaran2009-04-021-4/+4
* handle SEEK_ constants in test_ioBenjamin Peterson2009-04-021-4/+4
* Add tests checking the CSV module's ability to handleR. David Murray2009-04-011-0/+18
* Fix for issue5040. Adding test for Content-LengthSenthil Kumaran2009-04-011-0/+28
* bounds check arguments to mmap.move(). All of them. Really.Jack Diederich2009-04-011-7/+14
* test_warnings ironically had a single test that was not protecting the warningsBrett Cannon2009-04-011-8/+8
* test_logging was blindly clearing the warnings filter. This causedBrett Cannon2009-04-011-22/+24
* Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.Raymond Hettinger2009-04-011-0/+25
* _warnings was importing itself to get an attribute. That's bad if warnings getsBrett Cannon2009-04-011-0/+35
* Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH.Georg Brandl2009-04-011-1/+5
* Fix multiprocessing.event to match the new threading.Event APIJesse Noller2009-04-011-7/+9
* Fix issue 2522. locale.format now checks that it is passedR. David Murray2009-04-011-0/+14
* Fix for failing asyncore tests.Josiah Carlson2009-04-011-1/+2
* Issue #5635: Fix running test_sys with tracing enabled.Georg Brandl2009-04-011-0/+5
* #5228: add pickle support to functools.partialJack Diederich2009-03-311-1/+14
* Fix Windows test skip error revealed by buildbot. Also a comment spellingR. David Murray2009-03-312-10/+5
* #1651995: fix _convert_ref for non-ASCII characters.Georg Brandl2009-03-311-0/+9
* fix Thread.ident when it is the main thread or a dummy thread #5632Benjamin Peterson2009-03-311-0/+13
* #1674032: return value of flag from Event.wait(). OKed by Guido.Georg Brandl2009-03-311-1/+2
* Issue #5387: Fixed mmap.move crash by integer overflow. (take2)Hirokazu Yamamoto2009-03-311-4/+16
* Remove the regrtest check that turns any ImportError into a skipped test.R. David Murray2009-03-311-1/+1
* Improve test_support.import_module docstring, removeR. David Murray2009-03-311-16/+14
* Delete out-of-date and little-known README from the testR. David Murray2009-03-311-413/+0
* Rename the actual method definitions to the official assertFoo names.Gregory P. Smith2009-03-311-1/+27
* A few more test skips via import_module, and change import_module toR. David Murray2009-03-3110-15/+37
* The unittest.TestCase.assertEqual() now displays the differences in lists,Gregory P. Smith2009-03-313-48/+419