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/EditorWindow.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/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 8ec0f32..d34fc62 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -469,13 +469,10 @@ class EditorWindow(object): ("format", "F_ormat"), ("run", "_Run"), ("options", "_Options"), - ("windows", "_Windows"), + ("windows", "_Window"), ("help", "_Help"), ] - if sys.platform == "darwin": - menu_specs[-2] = ("windows", "_Window") - def createmenubar(self): mbar = self.menubar |