Stop on the next line in or below the given frame.
(self, frame)
| 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.""" |