From: Guido van Rossum Date: Sun, 18 Mar 2001 16:58:44 +0000 (+0000) Subject: Print a bunch of asterisks before the failure summary, to separate it X-Git-Tag: v2.1b2~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=af00a46599e2891c26026ec4bc6ada892f1b810f;p=thirdparty%2FPython%2Fcpython.git Print a bunch of asterisks before the failure summary, to separate it from the last failure report. --- diff --git a/Lib/doctest.py b/Lib/doctest.py index 9c0ecc87a8b5..c1130f7a5cf5 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -885,6 +885,7 @@ see its docs for details. for thing, count in passed: print " %3d tests in %s" % (count, thing) if failed: + print "*" * 65 print len(failed), "items had failures:" failed.sort() for thing, (f, t) in failed: