[Python-checkins] cpython (3.4): Issue #16893: finish deprecation.

terry.reedy python-checkins at python.org
Mon Sep 21 05:06:13 CEST 2015


https://hg.python.org/cpython/rev/ff0270e9bdfb
changeset:   98105:ff0270e9bdfb
branch:      3.4
parent:      98101:a2e782188db6
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sun Sep 20 23:05:25 2015 -0400
summary:
  Issue #16893: finish deprecation.

files:
  Lib/idlelib/EditorWindow.py |  4 +---
  1 files changed, 1 insertions(+), 3 deletions(-)


diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -85,9 +85,7 @@
         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):

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list