(self, file, zipfile_context)
| 193 | |
| 194 | class LazyLoadingUnpickler(pickle.Unpickler): |
| 195 | def __init__(self, file, zipfile_context): |
| 196 | super().__init__(file) |
| 197 | self.zipfile_context = zipfile_context |
| 198 | |
| 199 | def find_class(self, module, name): |
| 200 | res = super().find_class(module, name) |