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 103b8c0 commit 27c8b39Copy full SHA for 27c8b39
src/isal/isal_zlib.pyx
@@ -351,9 +351,6 @@ cdef class Compress:
351
# TODO: Improve this with the buffer protocol.
352
out.append(self.obuf[:self.obuflen - self.stream.avail_out])
353
return b"".join(out)
354
-
355
- def copy(self):
356
- raise NotImplementedError("Copy not yet implemented for isal_zlib")
357
358
cdef class Decompress:
359
cdef public bytes unused_data
@@ -521,10 +518,6 @@ cdef class Decompress:
521
518
finally:
522
519
PyMem_Free(obuf)
523
520
524
525
526
527
528
cdef wbits_to_flag_and_hist_bits_deflate(int wbits,
529
unsigned short * hist_bits,
530
unsigned short * gzip_flag):
0 commit comments