From: Guido van Rossum Date: Thu, 1 Apr 1999 15:32:30 +0000 (+0000) Subject: Jonathan Giddy write: X-Git-Tag: v1.5.2c1~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ff764f1134fb4f9ad79585e53805825ed36abb8;p=python Jonathan Giddy write: In test_cpickle.py, the module os got imported, but the line to remove the temp file has gone missing. --- diff --git a/Lib/test/test_cpickle.py b/Lib/test/test_cpickle.py index 90326f78dd..9088eb7602 100644 --- a/Lib/test/test_cpickle.py +++ b/Lib/test/test_cpickle.py @@ -91,5 +91,6 @@ def dotest(): pass else: print "load from closed file should raise IOError" + os.remove(fn) dotest()