Kaydet (Commit) 2a021c80 authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #15800: fix the closing of input / output files when gzip is used as a script.

......@@ -670,9 +670,9 @@ def _test():
if not chunk:
break
g.write(chunk)
if g is not sys.stdout:
if g is not sys.stdout.buffer:
g.close()
if f is not sys.stdin:
if f is not sys.stdin.buffer:
f.close()
if __name__ == '__main__':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment