Searched refs:loader_class (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap_external.py | 611 for loader_class, suffixes in _get_supported_file_loaders(): 613 loader = loader_class(name, location) 1351 def _get_spec(self, loader_class, fullname, path, smsl, target): argument 1352 loader = loader_class(fullname, path) 1380 for suffix, loader_class in self._loaders: 1384 return self._get_spec(loader_class, fullname, full_path, [base_path], target) 1390 for suffix, loader_class in self._loaders: 1395 return self._get_spec(loader_class, fullname, full_path,
|