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

guido.van.rossum python-3000-checkins at python.org
Wed Apr 11 18:32:45 CEST 2007


Author: guido.van.rossum
Date: Wed Apr 11 18:32:43 2007
New Revision: 54755

Modified:
   python/branches/p3yk/Lib/test/test_io.py
Log:
Re-enable cleanup code.


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 Apr 11 18:32:43 2007
@@ -455,8 +455,8 @@
 
 class TextIOWrapperTest(unittest.TestCase):
 
-##     def tearDown(self):
-##         test_support.unlink(test_support.TESTFN)
+    def tearDown(self):
+        test_support.unlink(test_support.TESTFN)
 
     def testNewlines(self):
         input_lines = [ "unix\n", "windows\r\n", "os9\r", "last\n", "nonl" ]


More information about the Python-3000-checkins mailing list