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 martin.panter, python-dev, serhiy.storchaka, terry.reedy, zach.ware
Date 2016-07-25.04:37:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469421455.64.0.31875179631.issue27611@psf.upfronthosting.co.za>
In-reply-to
Content
#24137 only patched default, so either too many versions were selected or there is another bug in test_tix. Martin and Serhiy can sort that out.

The restore patch I pushed is based on this from tkinter.__init__
-----
_support_default_root = 1
_default_root = None

def NoDefaultRoot():
    """Inhibit setting of default root window.

    Call this function to inhibit that the first instance of
    Tk is used for windows without an explicit parent window.
    """
    global _support_default_root
    _support_default_root = 0
    global _default_root
    _default_root = None
    del _default_root
History
Date User Action Args
2016-07-25 04:37:35terry.reedysetrecipients: + terry.reedy, python-dev, martin.panter, zach.ware, serhiy.storchaka
2016-07-25 04:37:35terry.reedysetmessageid: <1469421455.64.0.31875179631.issue27611@psf.upfronthosting.co.za>
2016-07-25 04:37:35terry.reedylinkissue27611 messages
2016-07-25 04:37:35terry.reedycreate