Install the path-based import components.
(_bootstrap_module)
| 1555 | |
| 1556 | |
| 1557 | def _install(_bootstrap_module): |
| 1558 | """Install the path-based import components.""" |
| 1559 | _set_bootstrap_module(_bootstrap_module) |
| 1560 | supported_loaders = _get_supported_file_loaders() |
| 1561 | sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)]) |
| 1562 | sys.meta_path.append(PathFinder) |
nothing calls this directly
no test coverage detected