diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-14 02:03:44 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-14 02:03:44 (GMT) |
commit | 1c49ec0df03069bdd2899d1b0f3f9b746c1bf80e (patch) | |
tree | 76a557ced121c957c4ce78d1c02653457b1e48d8 /Lib/idlelib/EditorWindow.py | |
parent | a20c72a2641f05997f79c33b047cfbf064c6779c (diff) | |
download | cpython-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.py | 6 |
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. |