(self, fp)
| 525 | |
| 526 | class _GzipReader(_streams.DecompressReader): |
| 527 | def __init__(self, fp): |
| 528 | super().__init__(_PaddedFile(fp), zlib._ZlibDecompressor, |
| 529 | wbits=-zlib.MAX_WBITS) |
| 530 | # Set flag indicating start of a new member |
| 531 | self._new_member = True |
| 532 | self._last_mtime = None |
| 533 | |
| 534 | def _init_read(self): |
| 535 | self._crc = zlib.crc32(b"") |
nothing calls this directly
no test coverage detected