[Python-checkins] cpython (3.1): test_codecs now removes the temporay file (created by the test)

victor.stinner python-checkins at python.org
Mon May 23 14:58:12 CEST 2011


http://hg.python.org/cpython/rev/b538445a9df8
changeset:   70292:b538445a9df8
branch:      3.1
parent:      70278:9ef8fc5454cb
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Mon May 23 14:51:42 2011 +0200
summary:
  test_codecs now removes the temporay file (created by the test)

files:
  Lib/test/test_codecs.py |  13 ++++++-------
  1 files changed, 6 insertions(+), 7 deletions(-)


diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py
--- a/Lib/test/test_codecs.py
+++ b/Lib/test/test_codecs.py
@@ -515,13 +515,11 @@
         s1 = 'Hello\r\nworld\r\n'
 
         s = s1.encode(self.encoding)
-        try:
-            with open(support.TESTFN, 'wb') as fp:
-                fp.write(s)
-            with codecs.open(support.TESTFN, 'U', encoding=self.encoding) as reader:
-                self.assertEqual(reader.read(), s1)
-        finally:
-            support.unlink(support.TESTFN)
+        self.addCleanup(support.unlink, support.TESTFN)
+        with open(support.TESTFN, 'wb') as fp:
+            fp.write(s)
+        with codecs.open(support.TESTFN, 'U', encoding=self.encoding) as reader:
+            self.assertEqual(reader.read(), s1)
 
 class UTF16LETest(ReadTest):
     encoding = "utf-16-le"
@@ -1628,6 +1626,7 @@
                  "utf-32",
                  "utf-32-le",
                  "utf-32-be")
+        self.addCleanup(support.unlink, support.TESTFN)
         for encoding in tests:
             # Check if the BOM is written only once
             with codecs.open(support.TESTFN, 'w+', encoding=encoding) as f:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list