This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients terry.reedy
Date 2018-06-21.02:06:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529546799.59.0.56676864532.issue33924@psf.upfronthosting.co.za>
In-reply-to
Content
Some time ago, IDLE's main menu item 'Windows' was changed to 'Window'.  The latter seems to be pretty standard for a list of open windows.  Issue #33906 changed the implementation module name accordingly, from 'windows' to 'window'.  This issue is about changing the 'windows' key in mainmenu.menudef to 'window'. All other keys are the lower case version of the uppercase menu item.

editor subscripts derived menudict with ['windows'] and menu_specs, which maps menudef keys to menu names, includes ('windows': '_Window'). pyshell also has menu_specs

Function and pseudoevent names that include 'windows'should be left alone.

Besides the automated tests passing, the manual test will be that 'Window' works properly in all of Shell, editor window, and output window, as each is added.
History
Date User Action Args
2018-06-21 02:06:39terry.reedysetrecipients: + terry.reedy
2018-06-21 02:06:39terry.reedysetmessageid: <1529546799.59.0.56676864532.issue33924@psf.upfronthosting.co.za>
2018-06-21 02:06:39terry.reedylinkissue33924 messages
2018-06-21 02:06:38terry.reedycreate