mirror of
https://github.com/python/cpython.git
synced 2026-03-06 13:00:50 +00:00
Use binary mode for all gzip files we open.
This commit is contained in:
parent
00b6d0f224
commit
052364b20b
1 changed files with 4 additions and 4 deletions
|
|
@ -16,15 +16,15 @@
|
|||
/* 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 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue