Remove temporary breakpoint. Must implement in derived classes or get NotImplementedError.
(self, arg)
| 480 | return False |
| 481 | |
| 482 | def do_clear(self, arg): |
| 483 | """Remove temporary breakpoint. |
| 484 | |
| 485 | Must implement in derived classes or get NotImplementedError. |
| 486 | """ |
| 487 | raise NotImplementedError("subclass of bdb must implement do_clear()") |
| 488 | |
| 489 | def break_anywhere(self, frame): |
| 490 | """Return True if there is any breakpoint in that frame |