Lines Matching refs:zip64
329 def FileHeader(self, zip64=None): argument
344 if zip64 is None:
345 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
346 if zip64:
351 if not zip64:
1166 zip64 = self._allowZip64 and \
1168 self.fp.write(zinfo.FileHeader(zip64))
1194 if not zip64 and self._allowZip64:
1203 self.fp.write(zinfo.FileHeader(zip64))
1244 zip64 = zinfo.file_size > ZIP64_LIMIT or \
1246 if zip64 and not self._allowZip64:
1248 self.fp.write(zinfo.FileHeader(zip64))
1252 fmt = '<LQQ' if zip64 else '<LLL'