Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit af00a46

Browse files
committed
Print a bunch of asterisks before the failure summary, to separate it
from the last failure report.
1 parent 1bb515b commit af00a46

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/doctest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -885,6 +885,7 @@ def summarize(self, verbose=None):
885885
for thing, count in passed:
886886
print " %3d tests in %s" % (count, thing)
887887
if failed:
888+
print "*" * 65
888889
print len(failed), "items had failures:"
889890
failed.sort()
890891
for thing, (f, t) in failed:

0 commit comments

Comments
 (0)