commit | 674f4fa2ad1394235db032f8513af0a7b3347067 | [log] [tgz] |
---|---|---|
author | Ned Deily <nad@acm.org> | Wed May 22 15:16:17 2013 -0700 |
committer | Ned Deily <nad@acm.org> | Wed May 22 15:16:17 2013 -0700 |
tree | 836fb538beb4d0ede6057d691ce319d7a6f74e31 | |
parent | 1cf48b4adc0589dd52d123ddb6e5976c40ed2da5 [diff] [blame] |
Issue #17532: Always include Options menu for IDLE on OS X. Patch by Guilherme Simões.
diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index ec2720b..fe6e812 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py
@@ -98,6 +98,10 @@ # menu del menudefs[-1][1][0:2] + # Remove the 'Configure' entry from the options menu, it is in the + # application menu as 'Preferences' + del menudefs[-2][1][0:2] + default_keydefs = idleConf.GetCurrentKeySet() del sys