MCPcopy Index your code
hub / github.com/RustPython/RustPython / _install

Function _install

Lib/importlib/_bootstrap.py:1549–1554  ·  view source on GitHub ↗

Install importers for builtin and frozen modules

(sys_module, _imp_module)

Source from the content-addressed store, hash-verified

1547
1548
1549def _install(sys_module, _imp_module):
1550 """Install importers for builtin and frozen modules"""
1551 _setup(sys_module, _imp_module)
1552
1553 sys.meta_path.append(BuiltinImporter)
1554 sys.meta_path.append(FrozenImporter)
1555
1556
1557def _install_external_importers():

Callers

nothing calls this directly

Calls 2

_setupFunction · 0.70
appendMethod · 0.45

Tested by

no test coverage detected