Commit 2cca0572 authored by Victor Stinner's avatar Victor Stinner

test_codecs now removes the temporay file (created by the test)

parent 3c8d12d6
...@@ -515,13 +515,11 @@ class UTF16Test(ReadTest): ...@@ -515,13 +515,11 @@ class UTF16Test(ReadTest):
s1 = 'Hello\r\nworld\r\n' s1 = 'Hello\r\nworld\r\n'
s = s1.encode(self.encoding) s = s1.encode(self.encoding)
try: self.addCleanup(support.unlink, support.TESTFN)
with open(support.TESTFN, 'wb') as fp: with open(support.TESTFN, 'wb') as fp:
fp.write(s) fp.write(s)
with codecs.open(support.TESTFN, 'U', encoding=self.encoding) as reader: with codecs.open(support.TESTFN, 'U', encoding=self.encoding) as reader:
self.assertEqual(reader.read(), s1) self.assertEqual(reader.read(), s1)
finally:
support.unlink(support.TESTFN)
class UTF16LETest(ReadTest): class UTF16LETest(ReadTest):
encoding = "utf-16-le" encoding = "utf-16-le"
...@@ -1628,6 +1626,7 @@ class BomTest(unittest.TestCase): ...@@ -1628,6 +1626,7 @@ class BomTest(unittest.TestCase):
"utf-32", "utf-32",
"utf-32-le", "utf-32-le",
"utf-32-be") "utf-32-be")
self.addCleanup(support.unlink, support.TESTFN)
for encoding in tests: for encoding in tests:
# Check if the BOM is written only once # Check if the BOM is written only once
with codecs.open(support.TESTFN, 'w+', encoding=encoding) as f: with codecs.open(support.TESTFN, 'w+', encoding=encoding) as f:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment