[Python-checkins] commit of r41496 - python/trunk/Lib/idlelib

kurt.kaiser@python.org kurt.kaiser at python.org
Tue Nov 22 03:17:15 CET 2005


Author: kurt.kaiser
Date: Tue Nov 22 03:17:10 2005
New Revision: 41496

Modified:
   python/trunk/Lib/idlelib/CallTipWindow.py
Log:
Fix typo and update comment obsoleted by 'syntax' patch


Modified: python/trunk/Lib/idlelib/CallTipWindow.py
==============================================================================
--- python/trunk/Lib/idlelib/CallTipWindow.py	(original)
+++ python/trunk/Lib/idlelib/CallTipWindow.py	Tue Nov 22 03:17:10 2005
@@ -6,7 +6,7 @@
 """
 from Tkinter import *
 
-HIDE_VIRTUAL_EVENT_NAME = "<<caltipwindow-hide>>"
+HIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-hide>>"
 HIDE_SEQUENCES = ("<Key-Escape>", "<FocusOut>")
 CHECKHIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-checkhide>>"
 CHECKHIDE_SEQUENCES = ("<KeyRelease>", "<ButtonRelease>")
@@ -60,10 +60,7 @@
 
         self.tipwindow = tw = Toplevel(self.widget)
         self.position_window()
-        # XXX 12 Dec 2002 KBK The following command has two effects: It removes
-        #     the calltip window border (good) but also causes (at least on
-        #     Linux) the calltip to show as a top level window, burning through
-        #     any other window dragged over it.  Also, shows on all viewports!
+        # remove border on calltip window
         tw.wm_overrideredirect(1)
         try:
             # This command is only needed and available on Tk >= 8.4.0 for OSX


More information about the Python-checkins mailing list