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)
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to