summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
Commit message (Expand)AuthorAgeFilesLines
* Concatenation on a long string breaks (SF #1526585).Armin Rigo2006-08-091-1/+20
* Add new utility function, reap_children(), to test_support. This shouldNeal Norwitz2006-06-291-0/+21
* Whitespace normalization.Tim Peters2006-06-191-1/+0
* Prevent spurious leaks when running regrtest.py -R. There may be moreNeal Norwitz2006-06-181-0/+23
* Fix the socket tests so they can be run concurrently. Backport candidateNeal Norwitz2006-06-121-0/+18
* Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.Georg Brandl2006-04-301-0/+36
* Do the small-memory run of big-meormy tests using a prime number, ratherThomas Wouters2006-04-271-1/+1
* Whitespace normalization.Tim Peters2006-04-261-1/+1
* The result of SF patch #1471578: big-memory tests for strings, lists andThomas Wouters2006-04-261-1/+69
* Convenience function to remove a possibly non-existant fileNeal Norwitz2006-01-231-14/+10
* Patch #1276356: Implement new resource "urlfetch" for regrtest.Hye-Shik Chang2005-12-101-0/+14
* Build with --disable-unicode again. Fixes #1158607.Martin v. Löwis2005-03-081-1/+1
* Whitespace normalization.Tim Peters2004-01-181-1/+1
* Typo repair; added some comments and horizontal whitespace.Tim Peters2003-12-041-9/+10
* Fix test_unicode_file errors on platforms without Unicode file support,Mark Hammond2003-12-031-15/+21
* Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not beMark Hammond2003-12-031-0/+21
* Extend last change to cover TestSuites as well as TestCases.Raymond Hettinger2003-07-161-1/+1
* run_unittest() to support TestCase instances as well as classes. Helps with ...Raymond Hettinger2003-07-161-1/+4
* Include module name in doctest summary.Raymond Hettinger2003-05-171-1/+1
* Provide a clue that the doctests have run.Raymond Hettinger2003-05-171-1/+3
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-5/+5
* 'forget' now also deletes any proper .pyo files.Brett Cannon2003-05-041-1/+19
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-7/+8
* Factor out common boilerplate for test_supportRaymond Hettinger2003-04-271-0/+6
* if the test is run directly (__name__ == "__main__") don't actually requireSkip Montanaro2003-04-241-0/+4
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-051-2/+1
* test_support.requires(): Instead of raising TestSkipped, raise a newFred Drake2003-02-031-1/+9
* Rearrange test_socket_ssl so that a skip is expected iff the networkTim Peters2002-12-041-1/+4
* Don't try to convert the test filename to Unicode with -U.Martin v. Löwis2002-11-091-1/+6
* Whitespace normalization.Tim Peters2002-11-091-1/+1
* Fix SF # 631066, running regrtest in user mode failsNeal Norwitz2002-11-031-1/+21
* Patch #631972: Adds an is_jython flag.Finn Bock2002-11-011-0/+2
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-0/+3
* test_support: add a docstring to vereq().Tim Peters2001-12-291-0/+10
* Fix bad bug in structseq slicing (NULL pointers in result). Reported byTim Peters2001-10-301-0/+4
* run_suite(): If testclass is not available, provide an even more generalFred Drake2001-10-041-4/+8
* SF bug [#467336] doctest failures w/ new-style classes.Tim Peters2001-10-031-1/+2
* Guido points out that sys.__stdout__ is a bit bucket under IDLE. So keepTim Peters2001-09-251-1/+12
* Get rid of the increasingly convoluted global tricks w/ sys.stdout, inTim Peters2001-09-251-26/+10
* Set sys.save_stdout (to sys.stdout), so doctest-using tests can be runGuido van Rossum2001-09-251-0/+2
* Oops. I didn't expect that some tests (test_cookie) have expectedGuido van Rossum2001-09-211-0/+1
* Change the way unexpected output is reported: rather than stopping atGuido van Rossum2001-09-211-16/+12
* run_suite(): Oops, update a docstring.Barry Warsaw2001-09-201-1/+1
* run_suite(): Factor this out of run_unittest() for tests that buildBarry Warsaw2001-09-201-2/+7
* Repair late-night doc typos.Tim Peters2001-09-101-2/+2
* Teach regrtest how to pass on doctest failure msgs. This is done via aTim Peters2001-09-091-1/+46
* It appears that unittest was changed to stop hoarding raw exception data,Tim Peters2001-09-081-4/+1
* Two small changes to the resource usage option:Guido van Rossum2001-09-061-2/+2
* use_large_resources => use_resourcesBarry Warsaw2001-08-201-2/+8
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-3/+10