This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients louis-martin, ned.deily, rhettinger, ronaldoussoren, terry.reedy, wordtech
Date 2018-05-05.18:02:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1525543340.1.0.682650639539.issue33241@psf.upfronthosting.co.za>
In-reply-to
Content
This affects the popup tool tip in IDLE also.  Raymond, am I correct in thinking that the labels appearing in dialogs (Preferences, Search) still work?

A IDLE tool tip is a Toplevel.  Its parent is a Text widget.  It contains a non-blank Label widget. It is normally positioned on the lines below, with the left edge under the opening '('.  IDLE also does the following, where tw is the python Toplevel instance (tooltip window) and tw._w its tk counterpart.

try:
    # This command is only needed and available on Tk >= 8.4.0 for OSX
    # Without it, call tips intrude on the typing process by grabbing
    # the focus.
    tw.tk.call("::tk::unsupported::MacWindowStyle", "style", tw._w,
               "help", "noActivates")
except TclError:
    pass

To determine whether the popup is entirely missing or just the label, this might work.  Enter the following in an IDLE editor.

range
0123456789abcdef...
0123456789abcdef...

Go back up and enter '(' after 'range'.  A blank box should obscure '5' and to the right.
History
Date User Action Args
2018-05-05 18:02:20terry.reedysetrecipients: + terry.reedy, rhettinger, ronaldoussoren, wordtech, ned.deily, louis-martin
2018-05-05 18:02:20terry.reedysetmessageid: <1525543340.1.0.682650639539.issue33241@psf.upfronthosting.co.za>
2018-05-05 18:02:20terry.reedylinkissue33241 messages
2018-05-05 18:02:19terry.reedycreate