From 4afe154369c1741bcdba1e7d715e0609082dea43 Mon Sep 17 00:00:00 2001 From: "Martin v. Löwis" Date: Tue, 1 Mar 2005 08:09:28 +0000 Subject: Patch #1121234: Properly cleanup _exit and tkerror commands. Will backport to 2.4. --- Lib/lib-tk/Tkinter.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Lib/lib-tk/Tkinter.py') diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index fa57e2587cc..81bf465de1d 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1599,8 +1599,15 @@ class Tk(Misc, Wm): raise RuntimeError, \ "Tk 4.0 or higher is required; found Tk %s" \ % str(TkVersion) + # Create and register the tkerror and exit commands + # We need to inline parts of _register here, _ register + # would register differently-named commands. + if self._tclCommands is None: + self._tclCommands = [] self.tk.createcommand('tkerror', _tkerror) self.tk.createcommand('exit', _exit) + self._tclCommands.append('tkerror') + self._tclCommands.append('exit') if _support_default_root and not _default_root: _default_root = self self.protocol("WM_DELETE_WINDOW", self.destroy) -- cgit v1.2.3