Return all lines with breakpoints for filename. If no breakpoints are set, return an empty list.
(self, filename)
| 508 | Breakpoint.bplist[filename, lineno] or [] |
| 509 | |
| 510 | def get_file_breaks(self, filename): |
| 511 | """Return all lines with breakpoints for filename. |
| 512 | |
| 513 | If no breakpoints are set, return an empty list. |
| 514 | """ |
| 515 | filename = self.canonic(filename) |
| 516 | if filename in self.breaks: |
| 517 | return self.breaks[filename] |
| 518 | else: |
| 519 | return [] |
| 520 | |
| 521 | def get_all_breaks(self): |
| 522 | """Return all breakpoints that are set.""" |
no test coverage detected