summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2018-06-20 06:18:49 (GMT)
committerGitHub <noreply@github.com>2018-06-20 06:18:49 (GMT)
commit9af1836664d241fec6e62955ffaa559b3a2eaf1b (patch)
tree416fdb09258f87815acfe7fd1dd1ab637a4db3e4 /Lib/idlelib/idle_test
parentacdc660efc2056d8e28d99eaaf79ab60a263bd15 (diff)
downloadcpython-9af1836664d241fec6e62955ffaa559b3a2eaf1b.zip
cpython-9af1836664d241fec6e62955ffaa559b3a2eaf1b.tar.gz
cpython-9af1836664d241fec6e62955ffaa559b3a2eaf1b.tar.bz2
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.
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r--Lib/idlelib/idle_test/test_calltip_w.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_calltip_w.py b/Lib/idlelib/idle_test/test_calltip_w.py
index fc1f111..59e6967 100644
--- a/Lib/idlelib/idle_test/test_calltip_w.py
+++ b/Lib/idlelib/idle_test/test_calltip_w.py
@@ -6,7 +6,7 @@ from test.support import requires
from tkinter import Tk, Text
-class CallTipTest(unittest.TestCase):
+class CallTipWindowTest(unittest.TestCase):
@classmethod
def setUpClass(cls):
@@ -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.CalltipWindow(cls.text)
@classmethod
def tearDownClass(cls):