Set a filename-lineno breakpoint in the debugger. Called from self.load_breakpoints and EW.setbreakpoint
(self, filename, lineno)
| 398 | gv.load_dict(gdict, force, self.pyshell.interp.rpcclt) |
| 399 | |
| 400 | def set_breakpoint(self, filename, lineno): |
| 401 | """Set a filename-lineno breakpoint in the debugger. |
| 402 | |
| 403 | Called from self.load_breakpoints and EW.setbreakpoint |
| 404 | """ |
| 405 | self.idb.set_break(filename, lineno) |
| 406 | |
| 407 | def clear_breakpoint(self, filename, lineno): |
| 408 | self.idb.clear_break(filename, lineno) |