(self)
| 850 | return [] |
| 851 | |
| 852 | def zip_children(self): |
| 853 | # deferred for performance (python/importlib_metadata#502) |
| 854 | import zipfile |
| 855 | |
| 856 | zip_path = zipfile.Path(self.root) |
| 857 | names = zip_path.root.namelist() |
| 858 | self.joinpath = zip_path.joinpath |
| 859 | |
| 860 | return dict.fromkeys(child.split(posixpath.sep, 1)[0] for child in names) |
| 861 | |
| 862 | def search(self, name): |
| 863 | return self.lookup(self.mtime).search(name) |