Home
last modified time | relevance | path

Searched refs:allowZip64 (Results 1 – 6 of 6) 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/cpython2/Lib/
Dzipfile.py726 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/
Dzipfile_2_7_13.py726 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/
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/
DNEWS1641 records if allowZip64 is false.