Lines Matching refs:ZipFile
318 with zipfile.ZipFile(zip_path) as z:
352 """Adds a file to the given ZipFile with a hard-coded modified time.
355 zip_file: ZipFile instance to add the file to.
359 compress: Whether to enable compression. Default is taken from ZipFile
392 # default passed to the ZipFile constructor.
424 with zipfile.ZipFile(output, 'w') as outfile:
472 output: Path or ZipFile instance to add files to.
495 assert isinstance(output, zipfile.ZipFile)
498 out_zip = zipfile.ZipFile(output, 'w')
502 with zipfile.ZipFile(in_file, 'r') as in_zip: