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