MCPcopy Index your code
hub / github.com/RustPython/RustPython / do_next

Method do_next

Lib/pdb.py:1018–1024  ·  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

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

Callers

nothing calls this directly

Calls 1

set_nextMethod · 0.45

Tested by

no test coverage detected