[Python-checkins] CVS: python/dist/src/Lib/test regrtest.py,1.50,1.51
Guido van Rossum
gvanrossum@users.sourceforge.net
Tue, 18 Sep 2001 13:34:21 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv25067
Modified Files:
regrtest.py
Log Message:
Get rid of a superfluous space after "--" in the message printed for a
skipped test -- the print command already supplies a space.
Index: regrtest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/regrtest.py,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** regrtest.py 2001/09/18 02:18:57 1.50
--- regrtest.py 2001/09/18 20:34:19 1.51
***************
*** 313,318 ****
except (ImportError, test_support.TestSkipped), msg:
if not quiet:
! print "test", test,
! print "skipped -- ", msg
return -1
except KeyboardInterrupt:
--- 313,317 ----
except (ImportError, test_support.TestSkipped), msg:
if not quiet:
! print "test", test, "skipped --", msg
return -1
except KeyboardInterrupt: