Increment the ignore count of Breakpoint number 'bpnum'.
(self, bpnum)
| 130 | return self.stack, self.index |
| 131 | |
| 132 | def set_ignore(self, bpnum): |
| 133 | """Increment the ignore count of Breakpoint number 'bpnum'.""" |
| 134 | bp = self.get_bpbynumber(bpnum) |
| 135 | bp.ignore += 1 |
| 136 | |
| 137 | def set_enable(self, bpnum): |
| 138 | bp = self.get_bpbynumber(bpnum) |
nothing calls this directly
no test coverage detected