(self, zip_file)
| 210 | __slots__ = ('tree', '_items') |
| 211 | |
| 212 | def __init__(self, zip_file): |
| 213 | self.tree = ZipPathInfo(zip_file) |
| 214 | self._items = [] |
| 215 | for item in zip_file.filelist: |
| 216 | self.append(item) |
| 217 | |
| 218 | def __len__(self): |
| 219 | return len(self._items) |
nothing calls this directly
no test coverage detected