summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-31/+94
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-251-1/+1
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-3/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-9/+7
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+2
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-0/+44
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-3/+3
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-2/+2
* use isinstance instead of type. Use bool instead of int for flag.Neal Norwitz2006-08-211-5/+4
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+81
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+105
* 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