Searched refs:_find_spec (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | util.py | 6 from ._bootstrap import _find_spec 51 return _find_spec(name, path) 89 return _find_spec(fullname, parent.__path__) 91 return _find_spec(fullname, None)
|
D | __init__.py | 95 spec = _bootstrap._find_spec(name, path) 165 spec = module.__spec__ = _bootstrap._find_spec(name, pkgpath, target)
|
D | _bootstrap.py | 861 def _find_spec(name, path, target=None): function 946 spec = _find_spec(name, path)
|
/external/python/cpython3/Lib/test/test_importlib/import_/ |
D | test_meta_path.py | 43 self.assertIsNone(importlib._bootstrap._find_spec('nothing',
|