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/run.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/run.py')
-rw-r--r-- | Lib/idlelib/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 176fe3d..6fa373f 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -11,7 +11,7 @@ import warnings import tkinter # Tcl, deletions, messagebox if startup fails from idlelib import autocomplete # AutoComplete, fetch_encodings -from idlelib import calltips # CallTips +from idlelib import calltip # Calltip from idlelib import debugger_r # start_debugger from idlelib import debugobj_r # remote_object_tree_item from idlelib import iomenu # encoding @@ -462,7 +462,7 @@ class Executive(object): def __init__(self, rpchandler): self.rpchandler = rpchandler self.locals = __main__.__dict__ - self.calltip = calltips.CallTips() + self.calltip = calltip.Calltip() self.autocomplete = autocomplete.AutoComplete() def runcode(self, code): |