Home | History | Annotate | Download | only in python2.7

Lines Matching refs:allowZip64

708     z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False)
714 allowZip64: if True ZipFile will create files with ZIP64 extensions when
722 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False):
736 self._allowZip64 = allowZip64
1518 with ZipFile(args[1], 'w', allowZip64=True) as zf: