diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2018-06-20 03:00:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-20 03:00:35 (GMT) |
commit | 06e2029dfa500a42e3565ed7ba8573412f153d1c (patch) | |
tree | f9fe4e4683e94c09ef7d807295c3f8c26b00b437 /Lib/idlelib/idle_test/test_calltip_w.py | |
parent | 4d92158f4c3917fc4fbfebff15224e74782abf79 (diff) | |
download | cpython-06e2029dfa500a42e3565ed7ba8573412f153d1c.zip cpython-06e2029dfa500a42e3565ed7ba8573412f153d1c.tar.gz cpython-06e2029dfa500a42e3565ed7ba8573412f153d1c.tar.bz2 |
bpo-33907: Rename an IDLE module and class. (GH-7807)
Improve consistency and appearance. Module idlelib.calltips is now calltip.
Class idlelib.calltip_w.CallTip is now Calltip.
Diffstat (limited to 'Lib/idlelib/idle_test/test_calltip_w.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_calltip_w.py | 2 |
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 03f1e9a..fc1f111 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): |