Customize EditorWindow to not display save file messagebox.
(self)
| 89 | return "Output" |
| 90 | |
| 91 | def maybesave(self): |
| 92 | "Customize EditorWindow to not display save file messagebox." |
| 93 | return 'yes' if self.get_saved() else 'no' |
| 94 | |
| 95 | # Act as output file |
| 96 | def write(self, s, tags=(), mark="insert"): |