Searched refs:_get_spec (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap_external.py | 1241 def _get_spec(cls, fullname, path, target=None): member in PathFinder 1280 spec = cls._get_spec(fullname, path, target) 1289 … spec.submodule_search_locations = _NamespacePath(fullname, namespace_path, cls._get_spec) 1351 def _get_spec(self, loader_class, fullname, path, smsl, target): member in FileFinder 1384 return self._get_spec(loader_class, fullname, full_path, [base_path], target) 1395 return self._get_spec(loader_class, fullname, full_path,
|
/external/python/cpython3/Lib/ |
D | pkgutil.py | 26 def _get_spec(finder, name): function 354 spec = _get_spec(finder, '__init__')
|
D | pydoc.py | 2129 spec = pkgutil._get_spec(importer, modname)
|
/external/python/cpython3/Lib/test/ |
D | test_pkgutil.py | 300 spec = pkgutil._get_spec(finder, fullname) 312 self.assertIsNone(pkgutil._get_spec(finder, pkgname))
|