mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
bpo-33907: Rename an IDLE module and classes. (GH-7810)
Fix-up class name duplication in PR #7807. Combined effect is that module calltips and its class CallTips are now calltip and Calltip. In module calltip_w class CallTip is now CalltipWindow.
This commit is contained in:
parent
acdc660efc
commit
9af1836664
4 changed files with 11 additions and 11 deletions
|
@ -31,7 +31,7 @@ class Calltip:
|
|||
|
||||
def _make_tk_calltip_window(self):
|
||||
# See __init__ for usage
|
||||
return calltip_w.Calltip(self.text)
|
||||
return calltip_w.CalltipWindow(self.text)
|
||||
|
||||
def _remove_calltip_window(self, event=None):
|
||||
if self.active_calltip:
|
||||
|
@ -44,7 +44,7 @@ class Calltip:
|
|||
return "break"
|
||||
|
||||
def try_open_calltip_event(self, event):
|
||||
"""Happens when it would be nice to open a Calltip, but not really
|
||||
"""Happens when it would be nice to open a calltip, but not really
|
||||
necessary, for example after an opening bracket, so function calls
|
||||
won't be made.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue