Return all lines with breakpoints for filename. If no breakpoints are set, return an empty list.
(self, filename)
| 802 | Breakpoint.bplist[filename, lineno] or [] |
| 803 | |
| 804 | def get_file_breaks(self, filename): |
| 805 | """Return all lines with breakpoints for filename. |
| 806 | |
| 807 | If no breakpoints are set, return an empty list. |
| 808 | """ |
| 809 | filename = self.canonic(filename) |
| 810 | if filename in self.breaks: |
| 811 | return self.breaks[filename] |
| 812 | else: |
| 813 | return [] |
| 814 | |
| 815 | def get_all_breaks(self): |
| 816 | """Return all breakpoints that are set.""" |
no test coverage detected