r(eturn) Continue execution until the current function returns.
(self, arg)
| 1042 | do_restart = do_run |
| 1043 | |
| 1044 | def do_return(self, arg): |
| 1045 | """r(eturn) |
| 1046 | Continue execution until the current function returns. |
| 1047 | """ |
| 1048 | self.set_return(self.curframe) |
| 1049 | return 1 |
| 1050 | do_r = do_return |
| 1051 | |
| 1052 | def do_continue(self, arg): |
nothing calls this directly
no test coverage detected