We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 300ef6b commit d4cd4dcCopy full SHA for d4cd4dc
tests/test_gzip_compliance.py
@@ -205,10 +205,10 @@ def test_many_append(self):
205
# Bug #1074261 was triggered when reading a file that contained
206
# many, many members. Create such a file and verify that reading it
207
# works.
208
- with igzip.IGzipFile(self.filename, 'wb', 9) as f:
+ with igzip.IGzipFile(self.filename, 'wb') as f:
209
f.write(b'a')
210
for i in range(0, 200):
211
- with igzip.IGzipFile(self.filename, "ab", 9) as f: # append
+ with igzip.IGzipFile(self.filename, "ab") as f: # append
212
213
214
# Try reading the file
0 commit comments