Run the code without invoking the debugger
(self, code)
| 748 | del cache[key] |
| 749 | |
| 750 | def runcommand(self, code): |
| 751 | "Run the code without invoking the debugger" |
| 752 | # The code better not raise an exception! |
| 753 | if self.tkconsole.executing: |
| 754 | self.display_executing_dialog() |
| 755 | return 0 |
| 756 | if self.rpcclt: |
| 757 | self.rpcclt.remotequeue("exec", "runcode", (code,), {}) |
| 758 | else: |
| 759 | exec(code, self.locals) |
| 760 | return 1 |
| 761 | |
| 762 | def runcode(self, code): |
| 763 | "Override base class method" |
no test coverage detected