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

Method set_next

Lib/bdb.py:587–589  ·  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

585 self._set_stopinfo(None, None, opcode=True)
586
587 def set_next(self, frame):
588 """Stop on the next line in or below the given frame."""
589 self._set_stopinfo(frame, None, cmdframe=frame, cmdlineno=frame.f_lineno)
590
591 def set_return(self, frame):
592 """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