Load PyShellEditorWindow breakpoints into subprocess debugger.
(self)
| 411 | self.idb.clear_all_file_breaks(filename) |
| 412 | |
| 413 | def load_breakpoints(self): |
| 414 | """Load PyShellEditorWindow breakpoints into subprocess debugger.""" |
| 415 | for editwin in self.pyshell.flist.inversedict: |
| 416 | filename = editwin.io.filename |
| 417 | try: |
| 418 | for lineno in editwin.breakpoints: |
| 419 | self.set_breakpoint(filename, lineno) |
| 420 | except AttributeError: |
| 421 | continue |
| 422 | |
| 423 | |
| 424 | class StackViewer(ScrolledList): |