From 8ff764f1134fb4f9ad79585e53805825ed36abb8 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 1 Apr 1999 15:32:30 +0000 Subject: [PATCH] Jonathan Giddy write: In test_cpickle.py, the module os got imported, but the line to remove the temp file has gone missing. --- Lib/test/test_cpickle.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_cpickle.py b/Lib/test/test_cpickle.py index 90326f78dd8..9088eb7602e 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()