diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-21 03:05:25 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-21 03:05:25 (GMT) |
commit | 96f802a9994dc5fdea07715c83c741fabcc5011a (patch) | |
tree | fff2141b6f5a38522ce80e54ec0c0c93b15f852e /Lib | |
parent | b50c6377a665a92ee42ef1b0014fa3de7ae5905a (diff) | |
download | cpython-96f802a9994dc5fdea07715c83c741fabcc5011a.zip cpython-96f802a9994dc5fdea07715c83c741fabcc5011a.tar.gz cpython-96f802a9994dc5fdea07715c83c741fabcc5011a.tar.bz2 |
Issue #16893: finish deprecation.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 0c4caa0..496eecd 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -85,9 +85,7 @@ class HelpDialog(object): self.dlg = None self.parent = None -helpDialog = HelpDialog() # singleton instance -def _help_dialog(parent): # wrapper for htest - helpDialog.show_dialog(parent) +helpDialog = HelpDialog() # singleton instance, no longer used class EditorWindow(object): |