From: Michael W. Hudson Date: Tue, 15 Feb 2005 15:22:37 +0000 (+0000) Subject: Exceedingly minor tweak. X-Git-Tag: v2.5a0~2031 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1fb4c891f84989345b0967236954da1c6a94f34;p=thirdparty%2FPython%2Fcpython.git Exceedingly minor tweak. --- diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index d5ae5de86f05..e274c5b3383d 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -307,7 +307,7 @@ class test__mkstemp_inner(TC): 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