(self, fullname, path, target=None)
| 288 | return getattr(self.finder, name) |
| 289 | |
| 290 | def _find_spec(self, fullname, path, target=None): |
| 291 | # Attempt to find the spec |
| 292 | spec = self.finder.find_spec(fullname, path, target) |
| 293 | if spec is not None: |
| 294 | if getattr(spec, "loader", None) is not None: |
| 295 | # Patch the loader to enable reloading |
| 296 | spec.loader = ImportLoader(self.watcher, spec.loader) |
| 297 | return spec |
| 298 | |
| 299 | |
| 300 | def _process_ps(ps, default_ps: str): |
nothing calls this directly
no test coverage detected