Searched refs:loader_class (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap_external.py | 666 for loader_class, suffixes in _get_supported_file_loaders(): 668 loader = loader_class(name, location) 1426 def _get_spec(self, loader_class, fullname, path, smsl, target): argument 1427 loader = loader_class(fullname, path) 1455 for suffix, loader_class in self._loaders: 1459 return self._get_spec(loader_class, fullname, full_path, [base_path], target) 1465 for suffix, loader_class in self._loaders: 1470 return self._get_spec(loader_class, fullname, full_path,
|