(self, code, breakpoint, local_ns=None)
| 497 | self.shell.debugger(force=True) |
| 498 | |
| 499 | def _debug_exec(self, code, breakpoint, local_ns=None): |
| 500 | if breakpoint: |
| 501 | (filename, bp_line) = breakpoint.rsplit(':', 1) |
| 502 | bp_line = int(bp_line) |
| 503 | else: |
| 504 | (filename, bp_line) = (None, None) |
| 505 | self._run_with_debugger( |
| 506 | code, self.shell.user_ns, filename, bp_line, local_ns=local_ns |
| 507 | ) |
| 508 | |
| 509 | @line_magic |
| 510 | def tb(self, s): |
no test coverage detected