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 c0d6a51 commit 9b44c25Copy full SHA for 9b44c25
src/isal/igzip.py
@@ -152,9 +152,6 @@ def __repr__(self):
152
s = repr(self.fileobj)
153
return '<igzip ' + s[1:-1] + ' ' + hex(id(self)) + '>'
154
155
- def flush(self, zlib_mode=isal_zlib.Z_SYNC_FLUSH):
156
- super().flush(zlib_mode)
157
-
158
def _write_gzip_header(self, compresslevel=_COMPRESS_LEVEL_TRADEOFF):
159
# Python 3.9 added a `compresslevel` parameter to write gzip header.
160
# This only determines the value of one extra flag. Because this change
0 commit comments