mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
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.
This commit is contained in:
parent
4d92158f4c
commit
06e2029dfa
7 changed files with 35 additions and 32 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue