Commit 052364b2 authored by Guido van Rossum's avatar Guido van Rossum

Use binary mode for all gzip files we open.

parent 00b6d0f2
......@@ -16,15 +16,15 @@ data2 = """/* zlibmodule.c -- gzip-compatible data compression */
/* See http://www.winimage.com/zLibDll for Windows */
"""
f = gzip.GzipFile(filename, 'w') ; f.write(data1) ; f.close()
f = gzip.GzipFile(filename, 'wb') ; f.write(data1) ; f.close()
f = gzip.GzipFile(filename, 'r') ; d = f.read() ; f.close()
f = gzip.GzipFile(filename, 'rb') ; d = f.read() ; f.close()
assert d == data1
# Append to the previous file
f = gzip.GzipFile(filename, 'a') ; f.write(data2) ; f.close()
f = gzip.GzipFile(filename, 'ab') ; f.write(data2) ; f.close()
f = gzip.GzipFile(filename, 'r') ; d = f.read() ; f.close()
f = gzip.GzipFile(filename, 'rb') ; d = f.read() ; f.close()
assert d == data1+data2
os.unlink( filename )
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