MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

525
526class _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"")

Callers

nothing calls this directly

Calls 3

superClass · 0.85
_PaddedFileClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected