summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2015-01-18 05:03:41 (GMT)
committerNed Deily <nad@acm.org>2015-01-18 05:03:41 (GMT)
commitb5daa3d6db429017dea1e4f15b78557e03b5f847 (patch)
treefd384fc1354171058990121bc6fd939d57513800 /Lib/idlelib/PyShell.py
parent1a94b2bfa6fb4e83b6d1b12de0de3edd5eb91575 (diff)
downloadcpython-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-xLib/idlelib/PyShell.py5
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