n(ext) Continue execution until the next line in the current function is reached or it returns.
(self, arg)
| 1016 | do_s = do_step |
| 1017 | |
| 1018 | def do_next(self, arg): |
| 1019 | """n(ext) |
| 1020 | Continue execution until the next line in the current function |
| 1021 | is reached or it returns. |
| 1022 | """ |
| 1023 | self.set_next(self.curframe) |
| 1024 | return 1 |
| 1025 | do_n = do_next |
| 1026 | |
| 1027 | def do_run(self, arg): |