diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-06-20 06:40:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-20 06:40:30 (GMT) |
commit | 17d4c53fa3516f78df3c4f343bc6d2007af157cf (patch) | |
tree | 7224fdc4200d2d563ac4ee1e1e3dbb6fa5d2f554 /Lib/idlelib/calltip.py | |
parent | e97a685185b82ba6de6de576fc2a4cf3cd6192af (diff) | |
download | cpython-17d4c53fa3516f78df3c4f343bc6d2007af157cf.zip cpython-17d4c53fa3516f78df3c4f343bc6d2007af157cf.tar.gz cpython-17d4c53fa3516f78df3c4f343bc6d2007af157cf.tar.bz2 |
bpo-33907: Rename an IDLE module and classes. (GH-7810)
Fix-up class name duplication in PR GH-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.
(cherry picked from commit 9af1836664d241fec6e62955ffaa559b3a2eaf1b)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/calltip.py')
-rw-r--r-- | Lib/idlelib/calltip.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/calltip.py b/Lib/idlelib/calltip.py index 1ff0deb..596d2bc 100644 --- a/Lib/idlelib/calltip.py +++ b/Lib/idlelib/calltip.py @@ -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. """ |