(self)
| 34 | """Adapts the decompressor API to a RawIOBase reader API""" |
| 35 | |
| 36 | def readable(self): |
| 37 | return True |
| 38 | |
| 39 | def __init__(self, fp, decomp_factory, trailing_error=(), **decomp_args): |
| 40 | self._fp = fp |
no outgoing calls
no test coverage detected