MCPcopy Index your code
hub / github.com/python/cpython / _install

Function _install

Lib/importlib/_bootstrap.py:1468–1473  ·  view source on GitHub ↗

Install importers for builtin and frozen modules

(sys_module, _imp_module)

Source from the content-addressed store, hash-verified

1466
1467
1468def _install(sys_module, _imp_module):
1469 """Install importers for builtin and frozen modules"""
1470 _setup(sys_module, _imp_module)
1471
1472 sys.meta_path.append(BuiltinImporter)
1473 sys.meta_path.append(FrozenImporter)
1474
1475
1476def _install_external_importers():

Callers

nothing calls this directly

Calls 2

_setupFunction · 0.70
appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…