From ccb416fee2c680252a16a55f2640cba3bde80185 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Sat, 17 Jan 2015 21:06:27 -0800 Subject: Issue #23180: Rename IDLE "Windows" menu item to "Window". Patch by Al Sweigart. --- Lib/idlelib/EditorWindow.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Lib/idlelib/EditorWindow.py') diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 7d2ea8f759..1520ad0231 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -439,13 +439,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 -- cgit v1.2.1