Skip to content

Commit 27c8b39

Browse files
committed
Remove not implemented methods
1 parent 103b8c0 commit 27c8b39

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/isal/isal_zlib.pyx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -351,9 +351,6 @@ cdef class Compress:
351351
# TODO: Improve this with the buffer protocol.
352352
out.append(self.obuf[:self.obuflen - self.stream.avail_out])
353353
return b"".join(out)
354-
355-
def copy(self):
356-
raise NotImplementedError("Copy not yet implemented for isal_zlib")
357354

358355
cdef class Decompress:
359356
cdef public bytes unused_data
@@ -521,10 +518,6 @@ cdef class Decompress:
521518
finally:
522519
PyMem_Free(obuf)
523520

524-
def copy(self):
525-
raise NotImplementedError("Copy not yet implemented for isal_zlib")
526-
527-
528521
cdef wbits_to_flag_and_hist_bits_deflate(int wbits,
529522
unsigned short * hist_bits,
530523
unsigned short * gzip_flag):

0 commit comments

Comments
 (0)