commit | af00a46599e2891c26026ec4bc6ada892f1b810f | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sun Mar 18 16:58:44 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Sun Mar 18 16:58:44 2001 +0000 |
tree | e0c0ff0857fadf8af88405d4e66be9660468b716 | |
parent | 1bb515b0e548d0ff39fffe3326c5a08f46cd7d55 [diff] |
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 9c0ecc8..c1130f7 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py
@@ -885,6 +885,7 @@ 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: