(self)
| 821 | parent=self.tkconsole.text) |
| 822 | |
| 823 | def display_no_subprocess_error(self): |
| 824 | messagebox.showerror( |
| 825 | "Subprocess Connection Error", |
| 826 | "IDLE's subprocess didn't make connection.\n" |
| 827 | "See the 'Startup failure' section of the IDLE doc, online at\n" |
| 828 | "https://docs.python.org/3/library/idle.html#startup-failure", |
| 829 | parent=self.tkconsole.text) |
| 830 | |
| 831 | def display_executing_dialog(self): |
| 832 | messagebox.showerror( |
no test coverage detected