Print a bunch of asterisks before the failure summary, to separate it
authorGuido van Rossum <guido@python.org>
Sun, 18 Mar 2001 16:58:44 +0000 (16:58 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 18 Mar 2001 16:58:44 +0000 (16:58 +0000)
from the last failure report.

Lib/doctest.py

index 9c0ecc87a8b511a9dfc545c2cd4a42afb09b4987..c1130f7a5cf5ddbb01b5747cf227059902060259 100644 (file)
@@ -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: