From: Guido van Rossum Date: Wed, 11 Apr 2007 16:32:43 +0000 (+0000) Subject: Re-enable cleanup code. X-Git-Tag: v3.0a1~1069 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0712817ac7139505a38613bb244a66115c24f52;p=thirdparty%2FPython%2Fcpython.git Re-enable cleanup code. --- diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 7a2bdb2377d9..688f6dc2001b 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -455,8 +455,8 @@ class BufferedRandomTest(unittest.TestCase): 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" ]