(path)
| 29 | |
| 30 | @staticmethod |
| 31 | def get_zipfile(path): |
| 32 | zip_bank = ZipReader.zip_bank |
| 33 | if path not in zip_bank: |
| 34 | zfile = zipfile.ZipFile(path, 'r') |
| 35 | zip_bank[path] = zfile |
| 36 | return zip_bank[path] |
| 37 | |
| 38 | @staticmethod |
| 39 | def split_zip_style_path(path): |
no outgoing calls
no test coverage detected