Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_zipfile64.py48 zipfp = zipfile.ZipFile(f, "w", compression, allowZip64=True)
106 zipf = zipfile.ZipFile(TESTFN, mode="w", allowZip64=True)
121 zipf = zipfile.ZipFile(TESTFN, mode="w", allowZip64=False)
132 zipf = zipfile.ZipFile(TESTFN, mode="a", allowZip64=False)
140 zipf = zipfile.ZipFile(TESTFN, mode="a", allowZip64=True)
Dtest_zipfile.py684 with zipfile.ZipFile(f, "w", compression, allowZip64=True) as zipfp:
755 allowZip64=True) as zipfp:
764 zipf = zipfile.ZipFile(TESTFN, mode="w", allowZip64=True)
780 zipf = zipfile.ZipFile(TESTFN, mode="w", allowZip64=False)
791 zipf = zipfile.ZipFile(TESTFN, mode="a", allowZip64=False)
799 zipf = zipfile.ZipFile(TESTFN, mode="a", allowZip64=True)
/external/python/cpython3/Lib/test/
Dtest_zipfile64.py95 with zipfile.ZipFile(TESTFN, mode="w", allowZip64=True) as zipf:
109 with zipfile.ZipFile(TESTFN, mode="w", allowZip64=False) as zipf:
119 with zipfile.ZipFile(TESTFN, mode="a", allowZip64=False) as zipf:
126 with zipfile.ZipFile(TESTFN, mode="a", allowZip64=True) as zipf:
Dtest_zipfile.py692 with zipfile.ZipFile(f, "w", compression, allowZip64=True) as zipfp:
755 allowZip64=True)
772 allowZip64=False)
784 allowZip64=False)
793 allowZip64=True)
821 with zipfile.ZipFile(f, "w", compression, allowZip64=False) as zipfp:
826 with zipfile.ZipFile(f, "w", compression, allowZip64=False) as zipfp:
837 allowZip64=True) as zipfp:
846 with zipfile.ZipFile(TESTFN2, "w", allowZip64=True) as zipfp:
848 with zipfile.ZipFile(TESTFN2, "r", allowZip64=True) as zipfp:
[all …]
/external/python/cpython3/Lib/
Dzipfile.py1206 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True, argument
1215 self._allowZip64 = allowZip64
1936 allowZip64=True, optimize=-1): argument
1938 allowZip64=allowZip64)
/external/python/cpython2/Lib/
Dzipfile.py726 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False): argument
740 self._allowZip64 = allowZip64
1531 with ZipFile(args[1], 'w', allowZip64=True) as zf:
/external/python/cpython3/Doc/library/
Dzipfile.rst142 .. class:: ZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \
168 If *allowZip64* is ``True`` (the default) zipfile will create ZIP files that
544 .. class:: PyZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \
/external/python/cpython2/Doc/library/
Dzipfile.rst100 .. class:: ZipFile(file[, mode[, compression[, allowZip64]]])
117 is also raised. The default is :const:`ZIP_STORED`. If *allowZip64* is
/external/python/cpython2/Misc/NEWS.d/
D2.7.9rc1.rst420 allowZip64 is false.
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst2129 allowZip64 is false.
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1791 The *allowZip64* parameter to :class:`~zipfile.ZipFile` and
/external/python/cpython3/Misc/
DHISTORY1372 records if allowZip64 is false.