From: Terry Jan Reedy Date: Mon, 21 Sep 2015 03:05:21 +0000 (-0400) Subject: Issue #16893: finish deprecation. X-Git-Tag: v2.7.11rc1~138 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b7122cdbb47c4aedd1642f37862147bbb311fb6;p=thirdparty%2FPython%2Fcpython.git Issue #16893: finish deprecation. --- diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index afa79f05cda6..549886af5b9e 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -114,9 +114,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):