(self, *args, **kargs)
| 1511 | self.breakpoints.discard(bp) |
| 1512 | |
| 1513 | def start(self, *args, **kargs): |
| 1514 | # type: (Any, Any) -> None |
| 1515 | if self.isrunning(): |
| 1516 | raise ValueError("Already started") |
| 1517 | # Start the control thread |
| 1518 | self._do_start(*args, **kargs) |
| 1519 | |
| 1520 | def run(self, |
| 1521 | resume=None, # type: Optional[Message] |