Searched refs:spec_from_file_location (Results 1 - 12 of 12) sorted by relevance
/third_party/python/Lib/test/test_importlib/ |
H A D | test_spec.py | 652 # spec_from_file_location() 655 spec = self.util.spec_from_file_location(self.name, self.path) 661 SourceFileLoader = self.util.spec_from_file_location.__globals__['SourceFileLoader'] 672 spec = self.util.spec_from_file_location(self.name, 677 spec = self.util.spec_from_file_location(self.name) 682 spec = self.util.spec_from_file_location(self.name, 'spam.eggs') 687 spec = self.util.spec_from_file_location(self.name, 699 spec = self.util.spec_from_file_location(self.name, 715 spec = self.util.spec_from_file_location(self.name, loader=loader) 726 spec = self.util.spec_from_file_location(sel [all...] |
H A D | util.py | 280 spec = util.spec_from_file_location(
|
/third_party/python/Lib/ |
H A D | imp.py | 168 spec = util.spec_from_file_location(name, pathname, loader=loader) 188 spec = util.spec_from_file_location(name, pathname, loader=loader) 212 spec = util.spec_from_file_location(name, path,
|
H A D | pydoc.py | 377 spec = importlib.util.spec_from_file_location('__temp__', filename, 411 spec = importlib.util.spec_from_file_location(name, path, loader=loader)
|
/third_party/python/Lib/test/ |
H A D | test_runpy.py | 248 mod_spec = importlib.util.spec_from_file_location(mod_name, 282 new_spec = importlib.util.spec_from_file_location(spec.name, 615 mod_spec = importlib.util.spec_from_file_location(spec_name, 639 mod_spec = importlib.util.spec_from_file_location(run_name,
|
H A D | test_doctest.py | 2731 return importlib.util.spec_from_file_location(fullname, path, loader=self)
|
H A D | test_pkgutil.py | 7 from importlib.util import spec_from_file_location 338 return spec_from_file_location(fullname,
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | testutil.py | 67 spec = importlib.util.spec_from_file_location(full_name, path)
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap.py | 430 spec_from_file_location = _bootstrap_external.spec_from_file_location 433 return spec_from_file_location(name, loader=loader) 435 return spec_from_file_location(name, loader=loader,
|
H A D | util.py | 12 from ._bootstrap_external import spec_from_file_location namespace
|
H A D | _bootstrap_external.py | 778 def spec_from_file_location(name, location=None, *, loader=None, function 1601 return spec_from_file_location(fullname, path, loader=loader, 1722 spec = spec_from_file_location(name, pathname, loader=loader)
|
/third_party/python/ |
H A D | setup.py | 665 spec = importlib.util.spec_from_file_location(ext.name, ext_filename,
|
Completed in 18 milliseconds