Home | History | Annotate | Download | only in scripts

Lines Matching refs:zipfile

43 import zipfile
167 A new ZipFile object that points to the modified archive file.
179 compress_bit = zipfile.ZIP_STORED
181 compress_bit = zipfile.ZIP_DEFLATED
195 def OpenZipFileAtPath(self, path, mode=None, compress=zipfile.ZIP_DEFLATED):
204 return zipfile.ZipFile(path, mode)
206 return zipfile.ZipFile(path, mode, compress)
229 compress_bit = zipfile.ZIP_DEFLATED
231 compress_bit = zipfile.ZIP_STORED