summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/macosxSupport.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-10-23 00:16:17 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-10-23 00:16:17 (GMT)
commit637e1ab960d22635c168be823735438d3af30ee2 (patch)
tree1888191081fd7e7f29c27e8e293c5960e39226c1 /Lib/idlelib/macosxSupport.py
parentf427a141563ab2fbb231cc425141cea97e7bd220 (diff)
parenta9421fb3a3013a8aacc18959c28c1b0002f34025 (diff)
downloadcpython-637e1ab960d22635c168be823735438d3af30ee2.zip
cpython-637e1ab960d22635c168be823735438d3af30ee2.tar.gz
cpython-637e1ab960d22635c168be823735438d3af30ee2.tar.bz2
Merge with 3.4 #3068
Diffstat (limited to 'Lib/idlelib/macosxSupport.py')
-rw-r--r--Lib/idlelib/macosxSupport.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py
index b6488f8..65bd688 100644
--- a/Lib/idlelib/macosxSupport.py
+++ b/Lib/idlelib/macosxSupport.py
@@ -140,11 +140,9 @@ def overrideRootMenu(root, flist):
# Remove the 'About' entry from the help menu, it is in the application
# menu
del Bindings.menudefs[-1][1][0:2]
-
- # Remove the 'Configure' entry from the options menu, it is in the
+ # Remove the 'Configure Idle' entry from the options menu, it is in the
# application menu as 'Preferences'
- del Bindings.menudefs[-2][1][0:2]
-
+ del Bindings.menudefs[-2][1][0]
menubar = Menu(root)
root.configure(menu=menubar)
menudict = {}