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

Lines Matching refs:ZIP_STORED

17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
37 ZIP_STORED = 0
308 self.compress_type = ZIP_STORED # Type of compression for the file
527 elif self._compress_type != ZIP_STORED:
667 if self._compress_type == ZIP_STORED:
708 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False)
713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib).
722 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False):
727 if compression == ZIP_STORED:
1097 if zinfo.compress_type not in (ZIP_STORED, ZIP_DEFLATED):