(self, path: Union[str, "os.PathLike[str]"])
| 686 | return self.session.gethookproxy(fspath) |
| 687 | |
| 688 | def isinitpath(self, path: Union[str, "os.PathLike[str]"]) -> bool: |
| 689 | warnings.warn(FSCOLLECTOR_GETHOOKPROXY_ISINITPATH, stacklevel=2) |
| 690 | return self.session.isinitpath(path) |
| 691 | |
| 692 | def _recurse(self, direntry: "os.DirEntry[str]") -> bool: |
| 693 | if direntry.name == "__pycache__": |
no test coverage detected