summaryrefslogtreecommitdiffstats
path: root/Lib/unittest.py
Commit message (Expand)AuthorAgeFilesLines
* Convert some custom sort comparison functions to equivalent key functions.Raymond Hettinger2008-01-301-1/+10
* Minor cleanupChristian Heimes2007-11-261-1/+1
* Patch from Georg Brandl and me for #1493Christian Heimes2007-11-251-3/+8
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Add a test for fail*AlmostEqual, including the new support for complex numbers.Jeffrey Yasskin2007-09-071-2/+2
* Extend unittest's fail*AlmostEqual methods to work on complex numbers.Jeffrey Yasskin2007-09-061-2/+2
* Raise statement normalization in Lib/.Collin Winter2007-08-301-22/+26
* Add the function/method name to assertRaises.Guido van Rossum2007-07-101-3/+4
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-2/+2
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-9/+6
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-16/+0
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-3/+3
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-23/+74
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-3/+0
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-2/+2
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-1/+1
* Patch #1388073: Make unittest.TestCase easier to subclassGeorg Brandl2006-01-201-13/+13
* Reduce the usage of the types module.Raymond Hettinger2005-02-071-1/+1
* SF bug #1078905: Docs for unittest run() methods are misleadingRaymond Hettinger2004-12-041-4/+5
* Patch #1061904 / bug #878275: give a nicer error message when someoneJohannes Gijsbers2004-11-071-0/+2
* Added an __iter__ method for test suites.Jim Fulton2004-08-281-0/+3
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
* Variation of Thomas Heller's patch (722638) for improving readabilitySteve Purcell2003-12-061-10/+26
* Another instance of the same typo.Steve Purcell2003-10-261-2/+2
* Incorporated patch 819077, from George Yoshida:Steve Purcell2003-10-261-7/+6
* Fixed bug introduced in revision 1.27Armin Rigo2003-10-241-1/+1
* Removed redundant 'return' statement. (Issue 813159)Steve Purcell2003-09-301-2/+1
* Topical change: use 'startswith()' to identify test methods with aSteve Purcell2003-09-231-2/+2
* - Fixed loading of tests by name when name refers to unboundSteve Purcell2003-09-221-40/+58
* Explicitly define public symbols via __all__: see discussion with RaymondSteve Purcell2003-09-151-0/+10
* SF bug #804115: bad argument handling(unittest.py)Raymond Hettinger2003-09-131-2/+2
* delete unused local variable (pychecker caught)Skip Montanaro2003-07-131-1/+1
* SF bug #715145: unittest.py still uses != in failUnlessEqualRaymond Hettinger2003-04-041-2/+2
* Get rid of many apply() calls.Guido van Rossum2003-02-271-3/+3
* Incorporate Skip's suggestion to use SciPy's validation test nearRaymond Hettinger2002-12-291-0/+28
* Now that TestCase is a new-style class, change loadTestsFromModule andGuido van Rossum2002-09-301-2/+4
* Add a missing call to _strclass().Jeremy Hylton2002-08-131-1/+1
* Fix to ensure consistent 'repr' and 'str' results between PythonSteve Purcell2002-08-091-7/+10
* Add module-wide "__metaclass__ = type", as requested by Jim Fulton.Steve Purcell2002-08-081-1/+4
* Fix printing plural (s or "").Neal Norwitz2002-05-311-1/+1
* Munge the RCS keywords to avoid updates, so the version number matches thatFred Drake2002-05-211-1/+1
* Synch with pyunit CVS:Steve Purcell2001-12-171-4/+4
* In unconditional except clauses, don't catch KeyboardInterrupt -- it'sGuido van Rossum2001-12-071-0/+6
* A few formatting nits:Jeremy Hylton2001-10-221-5/+5
* Add missing period in docstring.Fred Drake2001-09-061-1/+1
* Changed TestResult to store only the text representation of an error.Steve Purcell2001-09-061-10/+15
* Merged in bugfix from PyUnit CVS for problem reported by Gary Todd.Steve Purcell2001-08-081-3/+4
* patch 418489 from Andrew Dalke for string format bugSteve Purcell2001-05-101-1/+1
* - Typo in message for TestCase.failIfEqual()Steve Purcell2001-04-151-2/+1