/external/python/cpython3/Lib/importlib/ |
D | __init__.py | 16 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.py | 409 _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 …]
|
D | machinery.py | 5 from ._bootstrap import ModuleSpec 6 from ._bootstrap import BuiltinImporter 7 from ._bootstrap import FrozenImporter
|
D | util.py | 3 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
|
D | abc.py | 2 from . import _bootstrap 168 return _bootstrap._load_module_shim(self, fullname)
|
/external/python/cpython3/Doc/library/ |
D | tracemalloc.rst | 58 <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__.py | 59 _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__.py | 64 _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/ |
D | test_locks.py | 32 LOCK_TYPES = {kind: splitinit._bootstrap._ModuleLock 104 DEADLOCK_ERRORS = {kind: splitinit._bootstrap._DeadlockError 118 return self.init._bootstrap
|
D | test_spec.py | 237 return self.init._bootstrap 406 return self.init._bootstrap
|
D | test_abc.py | 576 return self.init._bootstrap._load_unlocked(spec)
|
/external/python/cpython3/Lib/test/test_importlib/import_/ |
D | test_meta_path.py | 2 import importlib._bootstrap 43 self.assertIsNone(importlib._bootstrap._find_spec('nothing',
|
/external/python/cpython3/Lib/multiprocessing/ |
D | popen_fork.py | 74 code = process_obj._bootstrap()
|
D | spawn.py | 118 return self._bootstrap()
|
D | process.py | 276 def _bootstrap(self): member in BaseProcess
|
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 126 code = process_obj._bootstrap() 386 exitcode = self._bootstrap()
|
D | process.py | 250 def _bootstrap(self): member in Process
|
/external/python/cpython3/Lib/ |
D | imp.py | 19 from importlib._bootstrap import _ERR_MSG, _exec, _load, _builtin_from_name
|
D | threading.py | 847 _start_new_thread(self._bootstrap, ()) 871 def _bootstrap(self): member in Thread
|
D | pkgutil.py | 627 importlib._bootstrap._load(spec))
|
D | pydoc.py | 58 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__.py | 974 from importlib import _bootstrap 976 self.assertIs(mod, _bootstrap)
|
/external/python/cpython3/ |
D | setup.py | 6 import importlib._bootstrap 447 importlib._bootstrap._load(spec)
|
D | Makefile.pre.in | 737 # Regenerate Python/importlib.h from Lib/importlib/_bootstrap.py 740 $(srcdir)/Lib/importlib/_bootstrap.py \
|
/external/python/cpython3/PCbuild/ |
D | readme.txt | 120 changes have been made to Lib\importlib\_bootstrap.py
|