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.py269 spec = util.spec_from_file_location(
/external/python/cpython3/Lib/
Dimp.py168 spec = util.spec_from_file_location(name, pathname, loader=loader)
188 spec = util.spec_from_file_location(name, pathname, loader=loader)
211 spec = util.spec_from_file_location(name, path,
Dpydoc.py278 spec = importlib.util.spec_from_file_location('__temp__', filename,
312 spec = importlib.util.spec_from_file_location(name, path, 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
197 return spec_from_file_location(fullname,
/external/python/cpython3/Lib/importlib/
D_bootstrap.py424 spec_from_file_location = _bootstrap_external.spec_from_file_location
427 return spec_from_file_location(name, loader=loader)
429 return spec_from_file_location(name, loader=loader,
D_bootstrap_external.py524 def spec_from_file_location(name, location=None, *, loader=None, function
1230 return spec_from_file_location(fullname, path, loader=loader,
1348 spec = spec_from_file_location(name, pathname, loader=loader)
Dutil.py11 from ._bootstrap_external import spec_from_file_location
/external/python/cpython3/Doc/library/
Dimp.rst119 :func:`importlib.util.spec_from_file_location` and
Dimportlib.rst1302 .. function:: spec_from_file_location(name, location, *, loader=None, submodule_search_locations=No…
1409 spec = importlib.util.spec_from_file_location(module_name, file_path)
/external/python/cpython3/
Dsetup.py382 spec = importlib.util.spec_from_file_location(ext.name, ext_filename,
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1162 :func:`importlib.util.spec_from_file_location` now accept a