From: Fred Drake Date: Tue, 2 Jul 2002 22:46:42 +0000 (+0000) Subject: Add annotations that describe the change in the "errors" and "failures" X-Git-Tag: v2.3c1~5123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c412617779c6847f3f0992ad978657a242336fd3;p=thirdparty%2FPython%2Fcpython.git Add annotations that describe the change in the "errors" and "failures" attributes of the TestResult. --- diff --git a/Doc/lib/libunittest.tex b/Doc/lib/libunittest.tex index e2ce91a2b522..980d706e59b5 100644 --- a/Doc/lib/libunittest.tex +++ b/Doc/lib/libunittest.tex @@ -619,12 +619,16 @@ be of interest when inspecting the results of running a set of tests: A list containing pairs of \class{TestCase} instances and the formatted tracebacks for tests which raised an exception but did not signal a test failure. + \versionchanged[Contains formatted tracebacks instead of + \function{sys.exc_info()} results]{2.2} \end{memberdesc} \begin{memberdesc}[TestResult]{failures} A list containing pairs of \class{TestCase} instances and the formatted tracebacks for tests which signalled a failure in the code under test. + \versionchanged[Contains formatted tracebacks instead of + \function{sys.exc_info()} results]{2.2} \end{memberdesc} \begin{memberdesc}[TestResult]{testsRun}