? Mac/IDE scripts/Hold option to open a script ? Mac/IDE scripts/Insert file name ? Mac/IDE scripts/Insert folder name ? Mac/IDE scripts/Search Python Documentation ? Mac/IDE scripts/Hack/Remove .pyc files ? Mac/IDE scripts/Hack/Toolbox Assistant Index: Lib/lib-tk/Tkinter.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/lib-tk/Tkinter.py,v retrieving revision 1.181 diff -c -r1.181 Tkinter.py *** Lib/lib-tk/Tkinter.py 3 Aug 2004 18:36:25 -0000 1.181 --- Lib/lib-tk/Tkinter.py 12 Feb 2005 05:36:21 -0000 *************** *** 1599,1606 **** --- 1599,1609 ---- raise RuntimeError, \ "Tk 4.0 or higher is required; found Tk %s" \ % str(TkVersion) + 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)