(self, module_name)
| 838 | return self.execute_module(entry_point.module) |
| 839 | |
| 840 | def execute_module(self, module_name): |
| 841 | # type: (str) -> Any |
| 842 | bootstrap.demote() |
| 843 | |
| 844 | import runpy |
| 845 | |
| 846 | return Globals(runpy.run_module(module_name, run_name="__main__", alter_sys=True)) |
| 847 | |
| 848 | @classmethod |
| 849 | def execute_entry_point(cls, entry_point): |
no test coverage detected