(self, title, message)
| 202 | return confirm |
| 203 | |
| 204 | def errorbox(self, title, message): |
| 205 | # XXX This should really be a function of EditorWindow... |
| 206 | messagebox.showerror(title, message, parent=self.editwin.text) |
| 207 | self.editwin.text.focus_set() |
| 208 | self.perf = time.perf_counter() |
| 209 | |
| 210 | |
| 211 | if __name__ == "__main__": |
no test coverage detected