Mark the breakpoint as disabled.
(self)
| 1039 | self.enabled = True |
| 1040 | |
| 1041 | def disable(self): |
| 1042 | """Mark the breakpoint as disabled.""" |
| 1043 | self.enabled = False |
| 1044 | |
| 1045 | def bpprint(self, out=None): |
| 1046 | """Print the output of bpformat(). |
no outgoing calls
no test coverage detected