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: