mirror of https://github.com/python/cpython
Backport of r68153
This commit is contained in:
parent
1414e17b39
commit
ad18a49532
|
@ -90,7 +90,10 @@ Options Menu:
|
|||
Configure IDLE -- Open a configuration dialog. Fonts, indentation,
|
||||
keybindings, and color themes may be altered.
|
||||
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
|
||||
shows the block context of the section of code
|
||||
|
|
|
@ -89,7 +89,9 @@ def overrideRootMenu(root, flist):
|
|||
|
||||
###check if Tk version >= 8.4.14; if so, use hard-coded showprefs binding
|
||||
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', [
|
||||
('About IDLE', '<<about-idle>>'),
|
||||
None,
|
||||
|
|
Loading…
Reference in New Issue