diff options
| author | Guido van Rossum <guido@python.org> | 1999-04-01 15:32:30 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1999-04-01 15:32:30 +0000 |
| commit | 8ff764f1134fb4f9ad79585e53805825ed36abb8 (patch) | |
| tree | 05c08886417fde61cbac41004f28fabb4fca9f1f /Lib/test | |
| parent | 60e7330fee3e34732ab55cd6bb1212e138c11f7f (diff) | |
| download | cpython-git-8ff764f1134fb4f9ad79585e53805825ed36abb8.tar.gz | |
Jonathan Giddy write:
In test_cpickle.py, the module os got imported, but the line to remove
the temp file has gone missing.
Diffstat (limited to 'Lib/test')
| -rw-r--r-- | Lib/test/test_cpickle.py | 1 |
1 files changed, 1 insertions, 0 deletions
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() |
