Lines Matching refs:path
344 `submodule_search_locations` is the sequence of path entries to
728 """Meta path import for built-in modules.
749 def find_spec(cls, fullname, path=None, target=None):
756 def find_module(cls, fullname, path=None):
759 If 'path' is ever specified then the search is considered a failure.
767 spec = cls.find_spec(fullname, path)
806 """Meta path import for frozen modules.
921 def find_spec(cls, fullname, path=None, target=None):
951 def find_module(cls, fullname, path=None):
1044 def _find_spec_legacy(finder, name, path):
1048 loader = finder.find_module(name, path)
1054 def _find_spec(name, path, target=None):
1074 spec = _find_spec_legacy(finder, name, path)
1078 spec = find_spec(name, path, target)
1121 path = None
1132 path = parent_module.__path__
1138 spec = _find_spec(name, path)