Return True if there is any breakpoint for frame's filename.
(self, frame)
| 249 | raise NotImplementedError("subclass of bdb must implement do_clear()") |
| 250 | |
| 251 | def break_anywhere(self, frame): |
| 252 | """Return True if there is any breakpoint for frame's filename. |
| 253 | """ |
| 254 | return self.canonic(frame.f_code.co_filename) in self.breaks |
| 255 | |
| 256 | # Derived classes should override the user_* methods |
| 257 | # to gain control. |