Terry J. Reedy <tjre...@udel.edu> added the comment:

Thank you for the report.  The error line "del mainmenu.menudefs[-2][1][0]" 
follows this comment.
  # Remove the 'Configure Idle' entry from the options menu, it is in the
  # application menu as 'Preferences'
However, -2 is the Window menu, while Options is -3.  Before the c1b patch, 
Window started with one entry, Zoom Height.  This explains why 'Configure IDLE' 
is still present, and Zoom Height is absent.  I did not notice the latter gone 
before because there is an Apple-supplied Zoom entry, which maximizes width as 
well as height.  I did not notice that this was a replacement.

After the patch, Window starts empty, which is why even index 0 fails.  So try 
changing -2 to -3 in macosx, getting [-3][1][0] and see if everything works.

When the dialog is removed, the menu will start with a separator bar.  It 
should go to.  So next try [-3][1][0:1]

----------
stage:  -> needs patch
type:  -> behavior
versions: +Python 3.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35770>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to