[Python-checkins] commit of r41603 - python/trunk/Lib/test/test_file.py

neal.norwitz python-checkins at python.org
Mon Dec 5 02:23:56 CET 2005


Author: neal.norwitz
Date: Mon Dec  5 02:23:48 2005
New Revision: 41603

Modified:
   python/trunk/Lib/test/test_file.py
Log:
mwh spotted a copied error message, make it unique (and correct)

Modified: python/trunk/Lib/test/test_file.py
==============================================================================
--- python/trunk/Lib/test/test_file.py	(original)
+++ python/trunk/Lib/test/test_file.py	Mon Dec  5 02:23:48 2005
@@ -112,7 +112,7 @@
 except IOError:
     pass
 else:
-    print "should not be able to seek on sys.stdin"
+    print "should not be able to tell on sys.stdin"
 
 try:
     sys.stdin.truncate()


More information about the Python-checkins mailing list