diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-14 22:11:44 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-14 22:11:44 (GMT) |
commit | 92f60ed82a302035009835a8d63ff714118a96ad (patch) | |
tree | a119000028c02ecf0317859d0bcda37fe4c505b4 /Lib/test/test_multibytecodec.py | |
parent | 73315e92009c88acf53e497a0b9fcd93cd735aed (diff) | |
download | cpython-92f60ed82a302035009835a8d63ff714118a96ad.zip cpython-92f60ed82a302035009835a8d63ff714118a96ad.tar.gz cpython-92f60ed82a302035009835a8d63ff714118a96ad.tar.bz2 |
More proper closing of files
Diffstat (limited to 'Lib/test/test_multibytecodec.py')
-rw-r--r-- | Lib/test/test_multibytecodec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_multibytecodec.py b/Lib/test/test_multibytecodec.py index 849573a..fe772e1 100644 --- a/Lib/test/test_multibytecodec.py +++ b/Lib/test/test_multibytecodec.py @@ -48,8 +48,8 @@ class Test_MultibyteCodec(unittest.TestCase): def test_codingspec(self): try: for enc in ALL_CJKENCODINGS: - print('# coding:', enc, file=io.open(TESTFN, 'w')) - exec(open(TESTFN).read()) + code = '# coding: {}\n'.format(enc) + exec(code) finally: support.unlink(TESTFN) |