Stop on the next line in or below the given frame.
(self, frame)
| 310 | self._set_stopinfo(None, None) |
| 311 | |
| 312 | def set_next(self, frame): |
| 313 | """Stop on the next line in or below the given frame.""" |
| 314 | self._set_stopinfo(frame, None) |
| 315 | |
| 316 | def set_return(self, frame): |
| 317 | """Stop when returning from the given frame.""" |