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

Method __init__

tools/python-3.11.9-amd64/Lib/zipfile.py:1146–1154  ·  view source on GitHub ↗
(self, zf, zinfo, zip64)

Source from the content-addressed store, hash-verified

1144
1145class _ZipWriteFile(io.BufferedIOBase):
1146 def __init__(self, zf, zinfo, zip64):
1147 self._zinfo = zinfo
1148 self._zip64 = zip64
1149 self._zipfile = zf
1150 self._compressor = _get_compressor(zinfo.compress_type,
1151 zinfo._compresslevel)
1152 self._file_size = 0
1153 self._compress_size = 0
1154 self._crc = 0
1155
1156 @property
1157 def _fileobj(self):

Callers

nothing calls this directly

Calls 1

_get_compressorFunction · 0.85

Tested by

no test coverage detected