summaryrefslogtreecommitdiff
path: root/Lib/idlelib/idle_test/test_calltip_w.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2018-06-20 00:22:48 -0400
committerGitHub <noreply@github.com>2018-06-20 00:22:48 -0400
commite97a685185b82ba6de6de576fc2a4cf3cd6192af (patch)
treef953ba2b579aa23dd3c5d7ca9fde4e390dcbd40e /Lib/idlelib/idle_test/test_calltip_w.py
parent90209a172c5b629f512cf292a22950285a2c3d81 (diff)
downloadcpython-git-e97a685185b82ba6de6de576fc2a4cf3cd6192af.tar.gz
[3.6] bpo-33907: Rename an IDLE module and class. (GH-7807) (GH-7809)
Improve consistency and appearance. Module idlelib.calltips is now calltip. Class idlelib.calltip_w.CallTip is now Calltip. (cherry picked from commit 06e2029dfa500a42e3565ed7ba8573412f153d1c) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/idle_test/test_calltip_w.py')
-rw-r--r--Lib/idlelib/idle_test/test_calltip_w.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_calltip_w.py b/Lib/idlelib/idle_test/test_calltip_w.py
index 03f1e9a68a..fc1f111400 100644
--- a/Lib/idlelib/idle_test/test_calltip_w.py
+++ b/Lib/idlelib/idle_test/test_calltip_w.py
@@ -14,7 +14,7 @@ class CallTipTest(unittest.TestCase):
cls.root = Tk()
cls.root.withdraw()
cls.text = Text(cls.root)
- cls.calltip = calltip_w.CallTip(cls.text)
+ cls.calltip = calltip_w.Calltip(cls.text)
@classmethod
def tearDownClass(cls):