diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-31 13:12:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-31 13:12:48 (GMT) |
commit | 3917c092b954a967fac7324628b213afbbb32a8c (patch) | |
tree | 2a65b53c697f2a5cf135f00e70c512b9dd8b58e2 /Lib/uu.py | |
parent | 594a046b88abf26c2c2a314ca5b54e4c808ba801 (diff) | |
download | cpython-3917c092b954a967fac7324628b213afbbb32a8c.zip cpython-3917c092b954a967fac7324628b213afbbb32a8c.tar.gz cpython-3917c092b954a967fac7324628b213afbbb32a8c.tar.bz2 |
Merged revisions 85975 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85975 | antoine.pitrou | 2010-10-30 15:03:56 +0200 (sam., 30 oct. 2010) | 4 lines
Issue #10246: uu.encode didn't close file objects explicitly when filenames
were given to it. Patch by Brian Brazil.
........
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-x | Lib/uu.py | 69 |
1 files changed, 38 insertions, 31 deletions
@@ -44,40 +44,47 @@ def encode(in_file, out_file, name=None, mode=None): # # If in_file is a pathname open it and change defaults # - if in_file == '-': - in_file = sys.stdin - elif isinstance(in_file, basestring): + opened_files = [] + try: + if in_file == '-': + in_file = sys.stdin + elif isinstance(in_file, basestring): + if name is None: + name = os.path.basename(in_file) + if mode is None: + try: + mode = os.stat(in_file).st_mode + except AttributeError: + pass + in_file = open(in_file, 'rb') + opened_files.append(in_file) + # + # Open out_file if it is a pathname + # + if out_file == '-': + out_file = sys.stdout + elif isinstance(out_file, basestring): + out_file = open(out_file, 'wb') + opened_files.append(out_file) + # + # Set defaults for name and mode + # if name is None: - name = os.path.basename(in_file) + name = '-' if mode is None: - try: - mode = os.stat(in_file).st_mode - except AttributeError: - pass - in_file = open(in_file, 'rb') - # - # Open out_file if it is a pathname - # - if out_file == '-': - out_file = sys.stdout - elif isinstance(out_file, basestring): - out_file = open(out_file, 'w') - # - # Set defaults for name and mode - # - if name is None: - name = '-' - if mode is None: - mode = 0666 - # - # Write the data - # - out_file.write('begin %o %s\n' % ((mode&0777),name)) - data = in_file.read(45) - while len(data) > 0: - out_file.write(binascii.b2a_uu(data)) + mode = 0666 + # + # Write the data + # + out_file.write('begin %o %s\n' % ((mode&0777),name)) data = in_file.read(45) - out_file.write(' \nend\n') + while len(data) > 0: + out_file.write(binascii.b2a_uu(data)) + data = in_file.read(45) + out_file.write(' \nend\n') + finally: + for f in opened_files: + f.close() def decode(in_file, out_file=None, mode=None, quiet=0): |