[Python-checkins] python/dist/src/Lib/test test_popen2.py, 1.8, 1.8.4.1

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Thu Feb 10 14:46:17 CET 2005


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv720/Lib/test

Modified Files:
      Tag: release24-maint
	test_popen2.py 
Log Message:
Fix typo

Index: test_popen2.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_popen2.py,v
retrieving revision 1.8
retrieving revision 1.8.4.1
diff -u -d -r1.8 -r1.8.4.1
--- test_popen2.py	12 Feb 2004 17:35:11 -0000	1.8
+++ test_popen2.py	10 Feb 2005 13:46:14 -0000	1.8.4.1
@@ -62,7 +62,7 @@
         raise ValueError("wrote %r read %r" % (teststr, got))
     got = e.read()
     if got:
-        raise ValueError("unexected %r on stderr" % (got,))
+        raise ValueError("unexpected %r on stderr" % (got,))
     for inst in popen2._active[:]:
         inst.wait()
     if popen2._active:



More information about the Python-checkins mailing list