summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/EditorWindow.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-14 02:03:44 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-14 02:03:44 (GMT)
commit1c49ec0df03069bdd2899d1b0f3f9b746c1bf80e (patch)
tree76a557ced121c957c4ce78d1c02653457b1e48d8 /Lib/idlelib/EditorWindow.py
parenta20c72a2641f05997f79c33b047cfbf064c6779c (diff)
downloadcpython-1c49ec0df03069bdd2899d1b0f3f9b746c1bf80e.zip
cpython-1c49ec0df03069bdd2899d1b0f3f9b746c1bf80e.tar.gz
cpython-1c49ec0df03069bdd2899d1b0f3f9b746c1bf80e.tar.bz2
Issue #24782: Finish converting the Configure Extension dialog into a new
tab in the IDLE Preferences dialog. Code patch by Mark Roseman.
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r--Lib/idlelib/EditorWindow.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index 1243b95..7dcd8fa 100644
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -218,8 +218,6 @@ class EditorWindow(object):
text.bind("<<python-docs>>", self.python_docs)
text.bind("<<about-idle>>", self.about_dialog)
text.bind("<<open-config-dialog>>", self.config_dialog)
- text.bind("<<open-config-extensions-dialog>>",
- self.config_extensions_dialog)
text.bind("<<open-module>>", self.open_module)
text.bind("<<do-nothing>>", lambda event: "break")
text.bind("<<select-all>>", self.select_all)
@@ -541,10 +539,6 @@ class EditorWindow(object):
# Synchronize with macosxSupport.overrideRootMenu.config_dialog.
configDialog.ConfigDialog(self.top,'Settings')
- def config_extensions_dialog(self, event=None):
- "Handle Options 'Configure Extensions' event."
- configDialog.ConfigExtensionsDialog(self.top)
-
def help_dialog(self, event=None):
"Handle Help 'IDLE Help' event."
# Synchronize with macosxSupport.overrideRootMenu.help_dialog.