Install the path-based import components.
(_bootstrap_module)
| 1580 | |
| 1581 | |
| 1582 | def _install(_bootstrap_module): |
| 1583 | """Install the path-based import components.""" |
| 1584 | _set_bootstrap_module(_bootstrap_module) |
| 1585 | supported_loaders = _get_supported_file_loaders() |
| 1586 | sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)]) |
| 1587 | sys.meta_path.append(PathFinder) |
nothing calls this directly
no test coverage detected
searching dependent graphs…