MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / __init__

Method __init__

tools/python-3.11.9-amd64/Lib/gzip.py:456–461  ·  view source on GitHub ↗
(self, fp)

Source from the content-addressed store, hash-verified

454
455class _GzipReader(_compression.DecompressReader):
456 def __init__(self, fp):
457 super().__init__(_PaddedFile(fp), zlib.decompressobj,
458 wbits=-zlib.MAX_WBITS)
459 # Set flag indicating start of a new member
460 self._new_member = True
461 self._last_mtime = None
462
463 def _init_read(self):
464 self._crc = zlib.crc32(b"")

Callers

nothing calls this directly

Calls 2

_PaddedFileClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected