n(ext) Continue execution until the next line in the current function is reached or it returns.
(self, arg)
| 1893 | do_s = do_step |
| 1894 | |
| 1895 | def do_next(self, arg): |
| 1896 | """n(ext) |
| 1897 | |
| 1898 | Continue execution until the next line in the current function |
| 1899 | is reached or it returns. |
| 1900 | """ |
| 1901 | if arg: |
| 1902 | self._print_invalid_arg(arg) |
| 1903 | return |
| 1904 | self.set_next(self.curframe) |
| 1905 | return 1 |
| 1906 | do_n = do_next |
| 1907 | |
| 1908 | def do_run(self, arg): |
nothing calls this directly
no test coverage detected