projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bb515b
)
Print a bunch of asterisks before the failure summary, to separate it
author
Guido van Rossum
<guido@python.org>
Sun, 18 Mar 2001 16:58:44 +0000
(16:58 +0000)
committer
Guido van Rossum
<guido@python.org>
Sun, 18 Mar 2001 16:58:44 +0000
(16:58 +0000)
from the last failure report.
Lib/doctest.py
patch
|
blob
|
history
diff --git
a/Lib/doctest.py
b/Lib/doctest.py
index 9c0ecc87a8b511a9dfc545c2cd4a42afb09b4987..c1130f7a5cf5ddbb01b5747cf227059902060259 100644
(file)
--- 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: