/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 | 471 _wrap = _bootstrap._wrap 519 _bootstrap._verbose_message('{}', message) 523 _bootstrap._verbose_message('{}', message) 554 _bootstrap._verbose_message('{}', message) 589 _bootstrap._verbose_message('code object from {!r}', bytecode_path) 668 spec = _bootstrap.ModuleSpec(name, loader, origin=location) 749 spec = _bootstrap.spec_from_loader(fullname, 790 _bootstrap._call_with_frames_removed(exec, code, module.__dict__) 794 return _bootstrap._load_module_shim(self, fullname) 853 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 169 return _bootstrap._load_module_shim(self, fullname)
|
/external/python/cpython3/Lib/ |
D | zipimport.py | 19 import _frozen_importlib as _bootstrap # for _verbose_message namespace 268 _bootstrap._verbose_message('import {} # loaded from Zip {}', fullname, modpath) 467 _bootstrap._verbose_message('zipimport: found {} names in {!r}', count, archive) 515 _bootstrap._verbose_message('zipimport: zlib UNAVAILABLE') 522 _bootstrap._verbose_message('zipimport: zlib UNAVAILABLE') 527 _bootstrap._verbose_message('zipimport: zlib available') 624 _bootstrap._verbose_message( 702 _bootstrap._verbose_message('trying {}{}{}', self.archive, path_sep, fullpath, verbosity=2)
|
D | imp.py | 19 from importlib._bootstrap import _ERR_MSG, _exec, _load, _builtin_from_name
|
D | threading.py | 874 _start_new_thread(self._bootstrap, ()) 898 def _bootstrap(self): member in Thread
|
D | pkgutil.py | 628 importlib._bootstrap._load(spec))
|
D | pydoc.py | 58 import importlib._bootstrap 373 module = importlib._bootstrap._load(spec) 406 return importlib._bootstrap._load(spec) 2256 module = importlib._bootstrap._load(spec)
|
/external/python/cpython3/Lib/ensurepip/ |
D | __init__.py | 69 _bootstrap(root=root, upgrade=upgrade, user=user, 74 def _bootstrap(*, root=None, upgrade=False, user=False, function 210 return _bootstrap(
|
/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/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 | 31 LOCK_TYPES = {kind: splitinit._bootstrap._ModuleLock 103 DEADLOCK_ERRORS = {kind: splitinit._bootstrap._DeadlockError 117 return self.init._bootstrap
|
D | test_spec.py | 237 return self.init._bootstrap 406 return self.init._bootstrap
|
D | test_abc.py | 589 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 | 71 code = process_obj._bootstrap(parent_sentinel=child_r)
|
D | spawn.py | 129 return self._bootstrap(parent_sentinel)
|
D | process.py | 290 def _bootstrap(self, parent_sentinel=None): 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/test/test_import/ |
D | __init__.py | 1049 from importlib import _bootstrap 1051 self.assertIs(mod, _bootstrap)
|
/external/python/cpython3/PCbuild/ |
D | readme.txt | 120 changes have been made to Lib\importlib\_bootstrap.py
|
/external/python/cpython3/ |
D | setup.py | 4 import importlib._bootstrap 609 importlib._bootstrap._load(spec)
|