From af00a46599e2891c26026ec4bc6ada892f1b810f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 18 Mar 2001 16:58:44 +0000 Subject: [PATCH] Print a bunch of asterisks before the failure summary, to separate it from the last failure report. --- Lib/doctest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/doctest.py b/Lib/doctest.py index 9c0ecc87a8b..c1130f7a5cf 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: