Home
last modified time | relevance | path

Searched refs:spec_from_file_location (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Lib/test/test_importlib/
Dtest_spec.py647 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 …]
Dutil.py276 spec = util.spec_from_file_location(
/external/python/cpython3/Lib/
Dimp.py167 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,
Dpydoc.py281 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.py438 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,
Dutil.py12 from ._bootstrap_external import spec_from_file_location
D_bootstrap_external.py574 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/
Dtest_runpy.py246 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,
Dtest_pkgutil.py5 from importlib.util import spec_from_file_location
206 return spec_from_file_location(fullname,
/external/python/cpython3/Doc/library/
Dimp.rst119 :func:`importlib.util.spec_from_file_location` and
Dimportlib.rst1551 .. 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/
Dsetup.py444 spec = importlib.util.spec_from_file_location(ext.name, ext_filename,
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1214 :func:`importlib.util.spec_from_file_location` now accept a