From: Terry Jan Reedy Date: Mon, 21 Sep 2015 03:05:25 +0000 (-0400) Subject: Issue #16893: finish deprecation. X-Git-Tag: v3.5.1rc1~318^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96f802a9994dc5fdea07715c83c741fabcc5011a;p=thirdparty%2FPython%2Fcpython.git Issue #16893: finish deprecation. --- diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 0c4caa0b9c29..496eecdbbb2f 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):