MCPcopy
hub / github.com/pex-tool/pex / execute_entry

Method execute_entry

pex/pex.py:833–838  ·  view source on GitHub ↗
(self, entry_point)

Source from the content-addressed store, hash-verified

831 return Globals(exec_function(program, globals_map))
832
833 def execute_entry(self, entry_point):
834 # type: (Union[ModuleEntryPoint, CallableEntryPoint]) -> Any
835 if isinstance(entry_point, CallableEntryPoint):
836 return self.execute_entry_point(entry_point)
837
838 return self.execute_module(entry_point.module)
839
840 def execute_module(self, module_name):
841 # type: (str) -> Any

Callers 2

_executeMethod · 0.95
execute_scriptMethod · 0.95

Calls 2

execute_entry_pointMethod · 0.95
execute_moduleMethod · 0.95

Tested by

no test coverage detected