MCPcopy Index your code
hub / github.com/python/cpython / do_next

Method do_next

Lib/pdb.py:1895–1905  ·  view source on GitHub ↗

n(ext) Continue execution until the next line in the current function is reached or it returns.

(self, arg)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

_print_invalid_argMethod · 0.95
set_nextMethod · 0.45

Tested by

no test coverage detected