Searched refs:allowZip64 (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_zipfile64.py | 48 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)
|
D | test_zipfile.py | 684 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/ |
D | test_zipfile64.py | 95 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:
|
D | test_zipfile.py | 692 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/ |
D | zipfile.py | 1206 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/ |
D | zipfile.py | 726 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/ |
D | zipfile.rst | 142 .. 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/ |
D | zipfile.rst | 100 .. 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/ |
D | 2.7.9rc1.rst | 420 allowZip64 is false.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 2129 allowZip64 is false.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1791 The *allowZip64* parameter to :class:`~zipfile.ZipFile` and
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1372 records if allowZip64 is false.
|