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

This commit is contained in:
Antoine Pitrou 2012-08-30 00:29:24 +02:00
parent 49ccd514d2
commit ecc4757b79
1 changed files with 2 additions and 2 deletions

View File

@ -621,9 +621,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__':