summaryrefslogtreecommitdiff
path: root/Lib/idlelib/EditorWindow.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-09-20 23:05:25 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2015-09-20 23:05:25 -0400
commit96f802a9994dc5fdea07715c83c741fabcc5011a (patch)
treefff2141b6f5a38522ce80e54ec0c0c93b15f852e /Lib/idlelib/EditorWindow.py
parentb50c6377a665a92ee42ef1b0014fa3de7ae5905a (diff)
downloadcpython-git-96f802a9994dc5fdea07715c83c741fabcc5011a.tar.gz
Issue #16893: finish deprecation.
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r--Lib/idlelib/EditorWindow.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index 0c4caa0b9c..496eecdbbb 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):