Changeset 391 for python/trunk/Lib/idlelib/Bindings.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/idlelib/Bindings.py
r2 r391 10 10 """ 11 11 import sys 12 from configHandler import idleConf13 import macosxSupport12 from idlelib.configHandler import idleConf 13 from idlelib import macosxSupport 14 14 15 15 menudefs = [ 16 16 # underscore prefixes character to underscore 17 17 ('file', [ 18 ('_New Window', '<<open-new-window>>'),18 ('_New File', '<<open-new-window>>'), 19 19 ('_Open...', '<<open-window-from-file>>'), 20 20 ('Open _Module...', '<<open-module>>'), … … 99 99 del menudefs[-1][1][0:2] 100 100 101 menudefs.insert(0, 102 ('application', [ 103 ('About IDLE', '<<about-idle>>'), 104 None, 105 ('_Preferences....', '<<open-config-dialog>>'), 106 ])) 107 101 # Remove the 'Configure' entry from the options menu, it is in the 102 # application menu as 'Preferences' 103 del menudefs[-2][1][0:2] 108 104 109 105 default_keydefs = idleConf.GetCurrentKeySet()
Note:
See TracChangeset
for help on using the changeset viewer.