Searched refs:spec_from_file_location (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_spec.py | 647 spec = self.util.spec_from_file_location(self.name, self.path) 664 spec = self.util.spec_from_file_location(self.name, 669 spec = self.util.spec_from_file_location(self.name) 674 spec = self.util.spec_from_file_location(self.name, 'spam.eggs') 679 spec = self.util.spec_from_file_location(self.name, 691 spec = self.util.spec_from_file_location(self.name, 707 spec = self.util.spec_from_file_location(self.name, loader=loader) 718 spec = self.util.spec_from_file_location(self.name, self.path, 731 spec = self.util.spec_from_file_location(self.name, self.path, 744 spec = self.util.spec_from_file_location(self.name, self.path, [all …]
|
D | util.py | 276 spec = util.spec_from_file_location(
|
/external/python/cpython3/Lib/ |
D | imp.py | 167 spec = util.spec_from_file_location(name, pathname, loader=loader) 187 spec = util.spec_from_file_location(name, pathname, loader=loader) 211 spec = util.spec_from_file_location(name, path,
|
D | pydoc.py | 281 spec = importlib.util.spec_from_file_location('__temp__', filename, 315 spec = importlib.util.spec_from_file_location(name, path, loader=loader)
|
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap.py | 438 spec_from_file_location = _bootstrap_external.spec_from_file_location 441 return spec_from_file_location(name, loader=loader) 443 return spec_from_file_location(name, loader=loader,
|
D | util.py | 12 from ._bootstrap_external import spec_from_file_location
|
D | _bootstrap_external.py | 574 def spec_from_file_location(name, location=None, *, loader=None, function 1353 return spec_from_file_location(fullname, path, loader=loader, 1471 spec = spec_from_file_location(name, pathname, loader=loader)
|
/external/python/cpython3/Lib/test/ |
D | test_runpy.py | 246 mod_spec = importlib.util.spec_from_file_location(mod_name, 280 new_spec = importlib.util.spec_from_file_location(spec.name, 613 mod_spec = importlib.util.spec_from_file_location(spec_name, 637 mod_spec = importlib.util.spec_from_file_location(run_name,
|
D | test_pkgutil.py | 5 from importlib.util import spec_from_file_location 206 return spec_from_file_location(fullname,
|
/external/python/cpython3/Doc/library/ |
D | imp.rst | 119 :func:`importlib.util.spec_from_file_location` and
|
D | importlib.rst | 1551 .. function:: spec_from_file_location(name, location, *, loader=None, submodule_search_locations=No… 1666 spec = importlib.util.spec_from_file_location(module_name, file_path)
|
/external/python/cpython3/ |
D | setup.py | 444 spec = importlib.util.spec_from_file_location(ext.name, ext_filename,
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1214 :func:`importlib.util.spec_from_file_location` now accept a
|