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