Mark the breakpoint as disabled.
(self)
| 726 | self.enabled = True |
| 727 | |
| 728 | def disable(self): |
| 729 | """Mark the breakpoint as disabled.""" |
| 730 | self.enabled = False |
| 731 | |
| 732 | def bpprint(self, out=None): |
| 733 | """Print the output of bpformat(). |
no outgoing calls
no test coverage detected