Remove temporary breakpoint. Must implement in derived classes or get NotImplementedError.
(self, arg)
| 471 | return False |
| 472 | |
| 473 | def do_clear(self, arg): |
| 474 | """Remove temporary breakpoint. |
| 475 | |
| 476 | Must implement in derived classes or get NotImplementedError. |
| 477 | """ |
| 478 | raise NotImplementedError("subclass of bdb must implement do_clear()") |
| 479 | |
| 480 | def break_anywhere(self, frame): |
| 481 | """Return True if there is any breakpoint in that frame |