Mark the breakpoint as disabled.
(self)
| 1030 | self.enabled = True |
| 1031 | |
| 1032 | def disable(self): |
| 1033 | """Mark the breakpoint as disabled.""" |
| 1034 | self.enabled = False |
| 1035 | |
| 1036 | def bpprint(self, out=None): |
| 1037 | """Print the output of bpformat(). |
no outgoing calls
no test coverage detected