(path)
| 22 | |
| 23 | @staticmethod |
| 24 | def get_zipfile(path): |
| 25 | zip_bank = ZipReader.zip_bank |
| 26 | if path not in zip_bank: |
| 27 | zfile = zipfile.ZipFile(path, 'r') |
| 28 | zip_bank[path] = zfile |
| 29 | return zip_bank[path] |
| 30 | |
| 31 | @staticmethod |
| 32 | def split_zip_style_path(path): |
no outgoing calls
no test coverage detected