diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-31 16:06:55 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-31 16:06:55 (GMT) |
commit | b805ee5fcf52fb09ea3d1d9ecc479a7eacc80fb0 (patch) | |
tree | 57a8b0c69643c823eb8793dd95f380a9dc1168c2 /Lib/test | |
parent | 27683c954b504a7859a5e2b4c9d7f8578a4b390b (diff) | |
download | cpython-b805ee5fcf52fb09ea3d1d9ecc479a7eacc80fb0.zip cpython-b805ee5fcf52fb09ea3d1d9ecc479a7eacc80fb0.tar.gz cpython-b805ee5fcf52fb09ea3d1d9ecc479a7eacc80fb0.tar.bz2 |
Merged revisions 86037 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r86037 | antoine.pitrou | 2010-10-31 17:04:14 +0100 (dim., 31 oct. 2010) | 4 lines
Issue #10266: uu.decode didn't close in_file explicitly when it was given
as a filename. Patch by Brian Brazil.
........
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_uu.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Lib/test/test_uu.py b/Lib/test/test_uu.py index a54f2c1..d6875c5 100644 --- a/Lib/test/test_uu.py +++ b/Lib/test/test_uu.py @@ -196,6 +196,23 @@ class UUFileTest(unittest.TestCase): finally: self._kill(f) + def test_decode_filename(self): + f = None + try: + support.unlink(self.tmpin) + f = open(self.tmpin, 'wb') + f.write(encodedtextwrapped(0o644, self.tmpout)) + f.close() + + uu.decode(self.tmpin) + + f = open(self.tmpout, 'rb') + s = f.read() + f.close() + self.assertEqual(s, plaintext) + finally: + self._kill(f) + def test_decodetwice(self): # Verify that decode() will refuse to overwrite an existing file f = None |