Kaydet (Commit) ad18a495 authored tarafından Ronald Oussoren's avatar Ronald Oussoren

Backport of r68153

üst 1414e17b
...@@ -90,7 +90,10 @@ Options Menu: ...@@ -90,7 +90,10 @@ Options Menu:
Configure IDLE -- Open a configuration dialog. Fonts, indentation, Configure IDLE -- Open a configuration dialog. Fonts, indentation,
keybindings, and color themes may be altered. keybindings, and color themes may be altered.
Startup Preferences may be set, and Additional Help Startup Preferences may be set, and Additional Help
Souces can be specified. Sources can be specified.
On MacOS X this menu is not present, use
menu 'IDLE -> Preferences...' instead.
--- ---
Code Context -- Open a pane at the top of the edit window which Code Context -- Open a pane at the top of the edit window which
shows the block context of the section of code shows the block context of the section of code
......
...@@ -89,7 +89,9 @@ def overrideRootMenu(root, flist): ...@@ -89,7 +89,9 @@ def overrideRootMenu(root, flist):
###check if Tk version >= 8.4.14; if so, use hard-coded showprefs binding ###check if Tk version >= 8.4.14; if so, use hard-coded showprefs binding
tkversion = root.tk.eval('info patchlevel') tkversion = root.tk.eval('info patchlevel')
if tkversion >= '8.4.14': # Note: we cannot check if the string tkversion >= '8.4.14', because
# the string '8.4.7' is greater than the string '8.4.14'.
if map(int, tkversion.split('.')) >= (8, 4, 14):
Bindings.menudefs[0] = ('application', [ Bindings.menudefs[0] = ('application', [
('About IDLE', '<<about-idle>>'), ('About IDLE', '<<about-idle>>'),
None, None,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment