diff options
-rw-r--r-- | Lib/doctest.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ 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: |