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 5fdc378 commit af5f788Copy full SHA for af5f788
src/isal/igzip.py
@@ -143,6 +143,11 @@ def write(self,data):
143
return length
144
145
146
+# The gzip._GzipReader does all sorts of complex stuff. While using the
147
+# standard DecompressReader by _compression relies more on the C implementation
148
+# side of things. It is much simpler. Gzip header interpretation and gzip
149
+# checksum checking is already implemented in the isa-l library. So no need
150
+# to do so in pure python.
151
class _IGzipReader(_compression.DecompressReader):
152
def __init__(self, fp):
153
super().__init__(fp, isal_zlib.decompressobj,
0 commit comments