(self, code, breakpoint)
| 483 | self.shell.debugger(force=True) |
| 484 | |
| 485 | def _debug_exec(self, code, breakpoint): |
| 486 | if breakpoint: |
| 487 | (filename, bp_line) = breakpoint.rsplit(':', 1) |
| 488 | bp_line = int(bp_line) |
| 489 | else: |
| 490 | (filename, bp_line) = (None, None) |
| 491 | self._run_with_debugger(code, self.shell.user_ns, filename, bp_line) |
| 492 | |
| 493 | @line_magic |
| 494 | def tb(self, s): |
no test coverage detected