n(ext) Continue execution until the next line in the current function is reached or it returns.
(self, arg)
| 1074 | do_s = do_step |
| 1075 | |
| 1076 | def do_next(self, arg): |
| 1077 | """n(ext) |
| 1078 | Continue execution until the next line in the current function |
| 1079 | is reached or it returns. |
| 1080 | """ |
| 1081 | self.set_next(self.curframe) |
| 1082 | return 1 |
| 1083 | do_n = do_next |
| 1084 | |
| 1085 | def do_run(self, arg): |