Kaydet (Commit) 052364b2 authored tarafından Guido van Rossum's avatar Guido van Rossum

Use binary mode for all gzip files we open.

üst 00b6d0f2
...@@ -16,15 +16,15 @@ data2 = """/* zlibmodule.c -- gzip-compatible data compression */ ...@@ -16,15 +16,15 @@ data2 = """/* zlibmodule.c -- gzip-compatible data compression */
/* See http://www.winimage.com/zLibDll for Windows */ /* 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 assert d == data1
# Append to the previous file # 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 assert d == data1+data2
os.unlink( filename ) 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