[Python-checkins] bpo-33964: IDLE macosx - removed unused local dict. (GH-7926)

iritkatriel webhook-mailer at python.org
Sun Nov 6 15:10:27 EST 2022


https://github.com/python/cpython/commit/5eff82fdde1c7ee6dee31fcd5950728893596e9f
commit: 5eff82fdde1c7ee6dee31fcd5950728893596e9f
branch: main
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: iritkatriel <1055913+iritkatriel at users.noreply.github.com>
date: 2022-11-06T20:10:22Z
summary:

bpo-33964: IDLE macosx - removed unused local dict. (GH-7926)

files:
M Lib/idlelib/macosx.py

diff --git a/Lib/idlelib/macosx.py b/Lib/idlelib/macosx.py
index 89b645702d33..2ea02ec04d66 100644
--- a/Lib/idlelib/macosx.py
+++ b/Lib/idlelib/macosx.py
@@ -174,9 +174,8 @@ def overrideRootMenu(root, flist):
     del mainmenu.menudefs[-3][1][0:2]
     menubar = Menu(root)
     root.configure(menu=menubar)
-    menudict = {}
 
-    menudict['window'] = menu = Menu(menubar, name='window', tearoff=0)
+    menu = Menu(menubar, name='window', tearoff=0)
     menubar.add_cascade(label='Window', menu=menu, underline=0)
 
     def postwindowsmenu(menu=menu):
@@ -226,8 +225,7 @@ def help_dialog(event=None):
 
     if isCarbonTk():
         # for Carbon AquaTk, replace the default Tk apple menu
-        menudict['application'] = menu = Menu(menubar, name='apple',
-                                              tearoff=0)
+        menu = Menu(menubar, name='apple', tearoff=0)
         menubar.add_cascade(label='IDLE', menu=menu)
         mainmenu.menudefs.insert(0,
             ('application', [



More information about the Python-checkins mailing list