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

Method exec_module

Lib/importlib/_bootstrap.py:919–921  ·  view source on GitHub ↗

Exec a built-in module

(module)

Source from the content-addressed store, hash-verified

917
918 @staticmethod
919 def exec_module(module):
920 """Exec a built-in module"""
921 _call_with_frames_removed(_imp.exec_builtin, module)
922
923 @classmethod
924 @_requires_builtin

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected