Searched refs:force_zip64 (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/ |
D | zipfile.py | 1467 def open(self, name, mode="r", pwd=None, *, force_zip64=False): argument 1506 return self._open_to_write(zinfo, force_zip64=force_zip64) 1565 def _open_to_write(self, zinfo, force_zip64=False): argument 1566 if force_zip64 and not self._allowZip64: 1592 (force_zip64 or zinfo.file_size * 1.05 > ZIP64_LIMIT)
|
/third_party/python/Doc/library/ |
D | zipfile.rst | 249 .. method:: ZipFile.open(name, mode='r', pwd=None, *, force_zip64=False) 276 2 GiB, pass ``force_zip64=True`` to ensure that the header format is
|