Searched refs:allowZip64 (Results 1 – 6 of 6) 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/cpython2/Lib/ |
D | zipfile.py | 726 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False): argument 740 self._allowZip64 = allowZip64 1533 with ZipFile(args[1], 'w', allowZip64=True) as zf:
|
/external/chromium-trace/catapult/third_party/zipfile/ |
D | zipfile_2_7_13.py | 726 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False): argument 740 self._allowZip64 = allowZip64 1533 with ZipFile(args[1], 'w', allowZip64=True) as zf:
|
/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/ |
D | NEWS | 1641 records if allowZip64 is false.
|