[Python-checkins] python/dist/src/Lib/test test_tempfile.py, 1.18, 1.19

mwh at users.sourceforge.net mwh at users.sourceforge.net
Tue Feb 15 16:22:45 CET 2005


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

Modified Files:
	test_tempfile.py 
Log Message:
Exceedingly minor tweak.


Index: test_tempfile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_tempfile.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- test_tempfile.py	15 Sep 2004 06:02:54 -0000	1.18
+++ test_tempfile.py	15 Feb 2005 15:22:37 -0000	1.19
@@ -307,7 +307,7 @@
         retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
         self.failIf(retval < 0,
                     "child process caught fatal signal %d" % -retval)
-        self.failIf(retval > 0, "child process reports failure")
+        self.failIf(retval > 0, "child process reports failure %d"%retval)
 
     def test_textmode(self):
         # _mkstemp_inner can create files in text mode



More information about the Python-checkins mailing list