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