mirror of
https://github.com/python/cpython.git
synced 2025-08-19 00:00:48 +00:00
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. ........
This commit is contained in:
parent
9f3f9c5125
commit
61d14b7659
3 changed files with 75 additions and 52 deletions
|
@ -161,6 +161,23 @@ class UUFileTest(unittest.TestCase):
|
|||
finally:
|
||||
self._kill(f)
|
||||
|
||||
def test_decode_filename(self):
|
||||
f = None
|
||||
try:
|
||||
test_support.unlink(self.tmpin)
|
||||
f = open(self.tmpin, 'w')
|
||||
f.write(encodedtextwrapped % (0644, self.tmpout))
|
||||
f.close()
|
||||
|
||||
uu.decode(self.tmpin)
|
||||
|
||||
f = open(self.tmpout, 'r')
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue