summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/EditorWindow.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-14 02:04:07 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-14 02:04:07 (GMT)
commit447169f6daf7f87f969c0ec25427231530351420 (patch)
tree9ab53d3321679c3d288e7623003b2a295573f32a /Lib/idlelib/EditorWindow.py
parent5a8bbc5f2a91966839488de6bd02fe783e6c7f2b (diff)
parent93f3542ae4501a8520cb6769db82038986ecf8d5 (diff)
downloadcpython-447169f6daf7f87f969c0ec25427231530351420.zip
cpython-447169f6daf7f87f969c0ec25427231530351420.tar.gz
cpython-447169f6daf7f87f969c0ec25427231530351420.tar.bz2
Merge with 3.4
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 a634d1f..0196344 100644
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -191,8 +191,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)
@@ -514,10 +512,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.