commit | 4d0f5a4934854207948115b14b4643a6cb600a0d | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Mar 07 22:59:39 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Mar 07 22:59:39 2007 +0000 |
tree | a2ea3c3fc6bce8d9f889777325c6698e399c24f9 | |
parent | 00efeadbcf2bfdeb805eecbb6d486b0bf93c3738 [diff] |
Delete TESTFN after the test.
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 03cdfef..193130e 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py
@@ -54,6 +54,9 @@ class IOTest(unittest.TestCase): + def tearDown(self): + test_support.unlink(test_support.TESTFN) + def write_ops(self, f): f.write(b"blah.") f.seek(0)