Extend base class method to reset output properly
(self)
| 733 | tkconsole.showprompt() |
| 734 | |
| 735 | def showtraceback(self): |
| 736 | "Extend base class method to reset output properly" |
| 737 | self.tkconsole.resetoutput() |
| 738 | self.checklinecache() |
| 739 | InteractiveInterpreter.showtraceback(self) |
| 740 | if self.tkconsole.getvar("<<toggle-jit-stack-viewer>>"): |
| 741 | self.tkconsole.open_stack_viewer() |
| 742 | |
| 743 | def checklinecache(self): |
| 744 | "Remove keys other than '<pyshell#n>'." |
no test coverage detected