Home
last modified time | relevance | path

Searched refs:allowZip64 (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/test/
Dtest_zipfile64.py96 with zipfile.ZipFile(TESTFN, mode="w", allowZip64=True) as zipf:
110 with zipfile.ZipFile(TESTFN, mode="w", allowZip64=False) as zipf:
120 with zipfile.ZipFile(TESTFN, mode="a", allowZip64=False) as zipf:
127 with zipfile.ZipFile(TESTFN, mode="a", allowZip64=True) as zipf:
Dtest_zipfile.py694 with zipfile.ZipFile(f, "w", compression, allowZip64=True) as zipfp:
757 allowZip64=True)
774 allowZip64=False)
786 allowZip64=False)
795 allowZip64=True)
823 with zipfile.ZipFile(f, "w", compression, allowZip64=False) as zipfp:
828 with zipfile.ZipFile(f, "w", compression, allowZip64=False) as zipfp:
839 allowZip64=True) as zipfp:
848 with zipfile.ZipFile(TESTFN2, "w", allowZip64=True) as zipfp:
850 with zipfile.ZipFile(TESTFN2, "r", allowZip64=True) as zipfp:
[all …]
/third_party/python/Lib/
Dzipfile.py1207 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True, argument
1216 self._allowZip64 = allowZip64
1937 allowZip64=True, optimize=-1): argument
1939 allowZip64=allowZip64)
/third_party/python/Doc/library/
Dzipfile.rst141 .. class:: ZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \
167 If *allowZip64* is ``True`` (the default) zipfile will create ZIP files that
561 .. class:: PyZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst2129 allowZip64 is false.
/third_party/python/Doc/whatsnew/
D3.4.rst1791 The *allowZip64* parameter to :class:`~zipfile.ZipFile` and
/third_party/python/Misc/
DHISTORY1372 records if allowZip64 is false.