Stop before the next instruction.
(self)
| 581 | cmdlineno=getattr(self.enterframe, 'f_lineno', None)) |
| 582 | |
| 583 | def set_stepinstr(self): |
| 584 | """Stop before the next instruction.""" |
| 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.""" |
no test coverage detected