(cls, entry_point)
| 847 | |
| 848 | @classmethod |
| 849 | def execute_entry_point(cls, entry_point): |
| 850 | # type: (CallableEntryPoint) -> Any |
| 851 | bootstrap.demote() |
| 852 | |
| 853 | runner = entry_point.resolve() |
| 854 | return runner() |
| 855 | |
| 856 | def cmdline(self, args=()): |
| 857 | """The commandline to run this environment. |
no test coverage detected