Searched refs:loader_class (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap_external.py | 673 for loader_class, suffixes in _get_supported_file_loaders(): 675 loader = loader_class(name, location) 1433 def _get_spec(self, loader_class, fullname, path, smsl, target): argument 1434 loader = loader_class(fullname, path) 1462 for suffix, loader_class in self._loaders: 1466 return self._get_spec(loader_class, fullname, full_path, [base_path], target) 1472 for suffix, loader_class in self._loaders: 1477 return self._get_spec(loader_class, fullname, full_path,
|