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 ned.deily
Recipients ned.deily, terry.reedy
Date 2016-06-14.00:54:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465865647.95.0.352872478585.issue27312@psf.upfronthosting.co.za>
In-reply-to
Content
Without looking closely at it, I would speculate that the failures are due to trying to test code in overrideRootMenu() that was previously only called once during execution and may not be re-enterant:

    # Remove the last 3 items of the file menu: a separator, close window and
    # quit. Close window will be reinserted just above the save item, where
    # it should be according to the HIG. Quit is in the application menu.
    del mainmenu.menudefs[0][1][-3:]
    mainmenu.menudefs[0][1].insert(6, closeItem)
History
Date User Action Args
2016-06-14 00:54:07ned.deilysetrecipients: + ned.deily, terry.reedy
2016-06-14 00:54:07ned.deilysetmessageid: <1465865647.95.0.352872478585.issue27312@psf.upfronthosting.co.za>
2016-06-14 00:54:07ned.deilylinkissue27312 messages
2016-06-14 00:54:07ned.deilycreate