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

Method set_next

Lib/bdb.py:596–598  ·  view source on GitHub ↗

Stop on the next line in or below the given frame.

(self, frame)

Source from the content-addressed store, hash-verified

594 self._set_stopinfo(None, None, opcode=True)
595
596 def set_next(self, frame):
597 """Stop on the next line in or below the given frame."""
598 self._set_stopinfo(frame, None, cmdframe=frame, cmdlineno=frame.f_lineno)
599
600 def set_return(self, frame):
601 """Stop when returning from the given frame."""

Callers 1

do_nextMethod · 0.45

Calls 1

_set_stopinfoMethod · 0.95

Tested by

no test coverage detected