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:
Terry Jan Reedy 2018-06-20 02:18:49 -04:00 committed by GitHub
parent acdc660efc
commit 9af1836664
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 11 deletions

View file

@ -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):