diff options
author | Ned Deily <nad@acm.org> | 2015-01-17 21:06:27 -0800 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2015-01-17 21:06:27 -0800 |
commit | ccb416fee2c680252a16a55f2640cba3bde80185 (patch) | |
tree | d61414d3fd5b7776432b6a610183f10b5a58f011 /Lib/idlelib/PyShell.py | |
parent | 3bbb37e09b30baf9ed5926cc765fee1175fb1828 (diff) | |
download | cpython-git-ccb416fee2c680252a16a55f2640cba3bde80185.tar.gz |
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 6b439885b2..51aa3f46b8 100755 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -848,13 +848,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 |