summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-09-21 03:05:25 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-09-21 03:05:25 (GMT)
commit96f802a9994dc5fdea07715c83c741fabcc5011a (patch)
treefff2141b6f5a38522ce80e54ec0c0c93b15f852e /Lib
parentb50c6377a665a92ee42ef1b0014fa3de7ae5905a (diff)
downloadcpython-96f802a9994dc5fdea07715c83c741fabcc5011a.zip
cpython-96f802a9994dc5fdea07715c83c741fabcc5011a.tar.gz
cpython-96f802a9994dc5fdea07715c83c741fabcc5011a.tar.bz2
Issue #16893: finish deprecation.
Diffstat (limited to 'Lib')
-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 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):