(self)
| 843 | return pathlib.Path(self.root, child) |
| 844 | |
| 845 | def children(self): |
| 846 | with suppress(Exception): |
| 847 | return os.listdir(self.root or '.') |
| 848 | with suppress(Exception): |
| 849 | return self.zip_children() |
| 850 | return [] |
| 851 | |
| 852 | def zip_children(self): |
| 853 | # deferred for performance (python/importlib_metadata#502) |
no test coverage detected