[Python-3000-checkins] r54213 - python/branches/p3yk/Lib/test/test_io.py

guido.van.rossum python-3000-checkins at python.org
Wed Mar 7 23:59:41 CET 2007


Author: guido.van.rossum
Date: Wed Mar  7 23:59:39 2007
New Revision: 54213

Modified:
   python/branches/p3yk/Lib/test/test_io.py
Log:
Delete TESTFN after the test.


Modified: python/branches/p3yk/Lib/test/test_io.py
==============================================================================
--- python/branches/p3yk/Lib/test/test_io.py	(original)
+++ python/branches/p3yk/Lib/test/test_io.py	Wed Mar  7 23:59:39 2007
@@ -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)


More information about the Python-3000-checkins mailing list