MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/gzip.py:525–530  ·  view source on GitHub ↗
(self, fp)

Source from the content-addressed store, hash-verified

523
524class _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"")

Callers

nothing calls this directly

Calls 3

superClass · 0.85
_PaddedFileClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected