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