[Python-checkins] CVS: python/dist/src/Lib doctest.py,1.7,1.8

Guido van Rossum gvanrossum@users.sourceforge.net
Sun, 18 Mar 2001 08:58:46 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv22463

Modified Files:
	doctest.py 
Log Message:
Print a bunch of asterisks before the failure summary, to separate it
from the last failure report.


Index: doctest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/doctest.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** doctest.py	2001/02/14 06:35:35	1.7
--- doctest.py	2001/03/18 16:58:44	1.8
***************
*** 886,889 ****
--- 886,890 ----
                      print " %3d tests in %s" % (count, thing)
          if failed:
+             print "*" * 65
              print len(failed), "items had failures:"
              failed.sort()