diff options
author | Ned Deily <nad@acm.org> | 2015-01-18 05:03:41 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2015-01-18 05:03:41 (GMT) |
commit | b5daa3d6db429017dea1e4f15b78557e03b5f847 (patch) | |
tree | fd384fc1354171058990121bc6fd939d57513800 /Lib/idlelib/PyShell.py | |
parent | 1a94b2bfa6fb4e83b6d1b12de0de3edd5eb91575 (diff) | |
download | cpython-b5daa3d6db429017dea1e4f15b78557e03b5f847.zip cpython-b5daa3d6db429017dea1e4f15b78557e03b5f847.tar.gz cpython-b5daa3d6db429017dea1e4f15b78557e03b5f847.tar.bz2 |
Issue #23180: Rename IDLE "Windows" menu item to "Window".
Patch by Al Sweigart.
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rwxr-xr-x | Lib/idlelib/PyShell.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 427d3ce..996c470 100755 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -871,13 +871,10 @@ class PyShell(OutputWindow): ("edit", "_Edit"), ("debug", "_Debug"), ("options", "_Options"), - ("windows", "_Windows"), + ("windows", "_Window"), ("help", "_Help"), ] - if sys.platform == "darwin": - menu_specs[-2] = ("windows", "_Window") - # New classes from idlelib.IdleHistory import History |