Home
last modified time | relevance | path

Searched refs:_bootstrap (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython3/Lib/importlib/
D__init__.py16 import _frozen_importlib as _bootstrap namespace
18 from . import _bootstrap
19 _bootstrap._setup(sys, _imp)
23 _bootstrap.__name__ = 'importlib._bootstrap'
24 _bootstrap.__package__ = 'importlib'
26 _bootstrap.__file__ = __file__.replace('__init__.py', '_bootstrap.py')
31 sys.modules['importlib._bootstrap'] = _bootstrap
37 _bootstrap_external._setup(_bootstrap)
38 _bootstrap._bootstrap_external = _bootstrap_external
63 from ._bootstrap import __import__
[all …]
D_bootstrap_external.py409 _wrap = _bootstrap._wrap
457 _bootstrap._verbose_message('{}', message)
461 _bootstrap._verbose_message('{}', message)
492 _bootstrap._verbose_message('{}', message)
527 _bootstrap._verbose_message('code object from {!r}', bytecode_path)
606 spec = _bootstrap.ModuleSpec(name, loader, origin=location)
687 spec = _bootstrap.spec_from_loader(fullname,
728 _bootstrap._call_with_frames_removed(exec, code, module.__dict__)
732 return _bootstrap._load_module_shim(self, fullname)
790 return _bootstrap._call_with_frames_removed(compile, data, path, 'exec',
[all …]
Dmachinery.py5 from ._bootstrap import ModuleSpec
6 from ._bootstrap import BuiltinImporter
7 from ._bootstrap import FrozenImporter
Dutil.py3 from ._bootstrap import module_from_spec
4 from ._bootstrap import _resolve_name
5 from ._bootstrap import spec_from_loader
6 from ._bootstrap import _find_spec
Dabc.py2 from . import _bootstrap
168 return _bootstrap._load_module_shim(self, fullname)
/external/python/cpython3/Doc/library/
Dtracemalloc.rst58 <frozen importlib._bootstrap>:716: size=4855 KiB, count=39328, average=126 B
59 <frozen importlib._bootstrap>:284: size=521 KiB, count=3199, average=167 B
64 <frozen importlib._bootstrap>:1446: size=70.4 KiB, count=911, average=79 B
65 <frozen importlib._bootstrap>:1454: size=52.0 KiB, count=25, average=2131 B
98 … <frozen importlib._bootstrap>:716: size=8173 KiB (+4428 KiB), count=71332 (+39369), average=117 B
101 <frozen importlib._bootstrap>:284: size=1005 KiB (+166 KiB), count=7423 (+1526), average=139 B
144 File "<frozen importlib._bootstrap>", line 716
145 File "<frozen importlib._bootstrap>", line 1036
146 File "<frozen importlib._bootstrap>", line 934
147 File "<frozen importlib._bootstrap>", line 1068
[all …]
/external/python/cpython3/Lib/ensurepip/
D__init__.py59 _bootstrap(root=root, upgrade=upgrade, user=user,
64 def _bootstrap(*, root=None, upgrade=False, user=False, function
198 return _bootstrap(
/external/python/cpython2/Lib/ensurepip/
D__init__.py64 _bootstrap(root=root, upgrade=upgrade, user=user,
69 def _bootstrap(root=None, upgrade=False, user=False, function
213 return _bootstrap(
/external/python/cpython3/Lib/test/test_importlib/
Dtest_locks.py32 LOCK_TYPES = {kind: splitinit._bootstrap._ModuleLock
104 DEADLOCK_ERRORS = {kind: splitinit._bootstrap._DeadlockError
118 return self.init._bootstrap
Dtest_spec.py237 return self.init._bootstrap
406 return self.init._bootstrap
Dtest_abc.py576 return self.init._bootstrap._load_unlocked(spec)
/external/python/cpython3/Lib/test/test_importlib/import_/
Dtest_meta_path.py2 import importlib._bootstrap
43 self.assertIsNone(importlib._bootstrap._find_spec('nothing',
/external/python/cpython3/Lib/multiprocessing/
Dpopen_fork.py74 code = process_obj._bootstrap()
Dspawn.py118 return self._bootstrap()
Dprocess.py276 def _bootstrap(self): member in BaseProcess
/external/python/cpython2/Lib/multiprocessing/
Dforking.py126 code = process_obj._bootstrap()
386 exitcode = self._bootstrap()
Dprocess.py250 def _bootstrap(self): member in Process
/external/python/cpython3/Lib/
Dimp.py19 from importlib._bootstrap import _ERR_MSG, _exec, _load, _builtin_from_name
Dthreading.py847 _start_new_thread(self._bootstrap, ())
871 def _bootstrap(self): member in Thread
Dpkgutil.py627 importlib._bootstrap._load(spec))
Dpydoc.py58 import importlib._bootstrap
284 module = importlib._bootstrap._load(spec)
317 return importlib._bootstrap._load(spec)
2148 module = importlib._bootstrap._load(spec)
/external/python/cpython3/Lib/test/test_import/
D__init__.py974 from importlib import _bootstrap
976 self.assertIs(mod, _bootstrap)
/external/python/cpython3/
Dsetup.py6 import importlib._bootstrap
447 importlib._bootstrap._load(spec)
DMakefile.pre.in737 # Regenerate Python/importlib.h from Lib/importlib/_bootstrap.py
740 $(srcdir)/Lib/importlib/_bootstrap.py \
/external/python/cpython3/PCbuild/
Dreadme.txt120 changes have been made to Lib\importlib\_bootstrap.py

12