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 ned.deily, python-dev, serhiy.storchaka, terry.reedy
Date 2016-06-22.21:47:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1466632064.74.0.76100256701.issue27196@psf.upfronthosting.co.za>
In-reply-to
Content
The only thing I still see is a pair of ThemeChanged warnings from 2.7.  Using binary search, I identified test_editmenu as the culprit.  This in spite of all the cleanup I can think of

    @classmethod
    def tearDownClass(cls):
        del cls.text, cls.entry, cls.spin
        cls.root.clipboard_clear()
        cls.root.update_idletasks()
        cls.root.update()
        cls.root.destroy()
        del cls.root

When I tried to determine which test method(s) gave the warning, as disable all to make sure the warnings vanished, which then did.  But after re-enabling, the warnings did not come back -- until they did after a few more runs.  I suspect that the only permanent solution will be Serhiy's patch to have .destroy cancel pending callbacks.
History
Date User Action Args
2016-06-22 21:47:44terry.reedysetrecipients: + terry.reedy, ned.deily, python-dev, serhiy.storchaka
2016-06-22 21:47:44terry.reedysetmessageid: <1466632064.74.0.76100256701.issue27196@psf.upfronthosting.co.za>
2016-06-22 21:47:44terry.reedylinkissue27196 messages
2016-06-22 21:47:44terry.reedycreate