Home
last modified time | relevance | path

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

12

/third_party/python/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._set_bootstrap_module(_bootstrap)
38 _bootstrap._bootstrap_external = _bootstrap_external
62 from ._bootstrap import __import__
[all …]
D_bootstrap_external.py23 _bootstrap = None variable
552 if _bootstrap is not None:
553 _wrap = _bootstrap._wrap
604 _bootstrap._verbose_message('{}', message)
608 _bootstrap._verbose_message('{}', message)
639 _bootstrap._verbose_message('{}', message)
674 _bootstrap._verbose_message('code object from {!r}', bytecode_path)
758 spec = _bootstrap.ModuleSpec(name, loader, origin=location)
839 spec = _bootstrap.spec_from_loader(fullname,
883 _bootstrap._call_with_frames_removed(exec, code, module.__dict__)
[all …]
Dmachinery.py3 from ._bootstrap import ModuleSpec
4 from ._bootstrap import BuiltinImporter
5 from ._bootstrap import FrozenImporter
D_abc.py2 from . import _bootstrap
40 return _bootstrap._load_module_shim(self, fullname)
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
/third_party/python/Lib/
Dzipimport.py19 import _frozen_importlib as _bootstrap # for _verbose_message namespace
170 return _bootstrap.spec_from_loader(fullname, self, is_package=module_info)
183 spec = _bootstrap.ModuleSpec(name=fullname, loader=None,
311 _bootstrap._verbose_message('import {} # loaded from Zip {}', fullname, modpath)
517 _bootstrap._verbose_message('zipimport: found {} names in {!r}', count, archive)
565 _bootstrap._verbose_message('zipimport: zlib UNAVAILABLE')
572 _bootstrap._verbose_message('zipimport: zlib UNAVAILABLE')
577 _bootstrap._verbose_message('zipimport: zlib available')
666 _bootstrap._verbose_message(
745 _bootstrap._verbose_message('trying {}{}{}', self.archive, path_sep, fullpath, verbosity=2)
Dimp.py19 from importlib._bootstrap import _ERR_MSG, _exec, _load, _builtin_from_name
Dthreading.py928 _start_new_thread(self._bootstrap, ())
952 def _bootstrap(self): member in Thread
Dpkgutil.py629 importlib._bootstrap._load(spec))
Dpydoc.py58 import importlib._bootstrap
373 module = importlib._bootstrap._load(spec)
406 return importlib._bootstrap._load(spec)
2257 module = importlib._bootstrap._load(spec)
/third_party/python/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 …]
/third_party/python/Lib/test/test_importlib/
Dtest_locks.py33 LOCK_TYPES = {kind: splitinit._bootstrap._ModuleLock
105 DEADLOCK_ERRORS = {kind: splitinit._bootstrap._DeadlockError
119 return self.init._bootstrap
Dtest_spec.py237 return self.init._bootstrap
414 return self.init._bootstrap
/third_party/parse5/packages/parse5/lib/extensions/error-reporting/
Dparser-mixin.js31 _bootstrap(document, fragmentContext) {
32 orig._bootstrap.call(this, document, fragmentContext);
/third_party/python/Lib/ensurepip/
D__init__.py126 _bootstrap(root=root, upgrade=upgrade, user=user,
131 def _bootstrap(*, root=None, upgrade=False, user=False, function
277 return _bootstrap(
/third_party/python/Lib/test/test_importlib/import_/
Dtest_meta_path.py2 import importlib._bootstrap
43 self.assertIsNone(importlib._bootstrap._find_spec('nothing',
/third_party/parse5/packages/parse5/lib/extensions/location-info/
Dparser-mixin.js65 _bootstrap(document, fragmentContext) {
66 orig._bootstrap.call(this, document, fragmentContext);
/third_party/parse5/packages/parse5-parser-stream/lib/
Dindex.js24 this.parser._bootstrap(this.document, null);
/third_party/python/Lib/multiprocessing/
Dpopen_fork.py71 code = process_obj._bootstrap(parent_sentinel=child_r)
Dspawn.py129 return self._bootstrap(parent_sentinel)
Dprocess.py290 def _bootstrap(self, parent_sentinel=None): member in BaseProcess
/third_party/python/Lib/test/test_import/
D__init__.py1051 from importlib import _bootstrap
1053 self.assertIs(mod, _bootstrap)
/third_party/python/PCbuild/
Dreadme.txt120 changes have been made to Lib\importlib\_bootstrap.py
/third_party/python/
Dsetup.py4 import importlib._bootstrap
648 importlib._bootstrap._load(spec)
/third_party/parse5/packages/parse5/lib/parser/
Dindex.js351 this._bootstrap(document, null);
370 this._bootstrap(documentMock, fragmentContext);
392 _bootstrap(document, fragmentContext) { method in Parser

12