Skip to content

Commit a9361cb

Browse files
author
andrew.kuchling
committed
Jython compatibility fix: if uu.decode() opened its output file, be sure to
close it. git-svn-id: http://svn.python.org/projects/python/trunk@52800 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 4957eb4 commit a9361cb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Lib/uu.py

+4
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ def decode(in_file, out_file=None, mode=None, quiet=0):
114114
#
115115
# Open the output file
116116
#
117+
opened = False
117118
if out_file == '-':
118119
out_file = sys.stdout
119120
elif isinstance(out_file, basestring):
@@ -123,6 +124,7 @@ def decode(in_file, out_file=None, mode=None, quiet=0):
123124
except AttributeError:
124125
pass
125126
out_file = fp
127+
opened = True
126128
#
127129
# Main decoding loop
128130
#
@@ -140,6 +142,8 @@ def decode(in_file, out_file=None, mode=None, quiet=0):
140142
s = in_file.readline()
141143
if not s:
142144
raise Error('Truncated input file')
145+
if opened:
146+
out_file.close()
143147

144148
def test():
145149
"""uuencode/uudecode main program"""

0 commit comments

Comments
 (0)