Message271226
#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 |
|
Date |
User |
Action |
Args |
2016-07-25 04:37:35 | terry.reedy | set | recipients:
+ terry.reedy, python-dev, martin.panter, zach.ware, serhiy.storchaka |
2016-07-25 04:37:35 | terry.reedy | set | messageid: <1469421455.64.0.31875179631.issue27611@psf.upfronthosting.co.za> |
2016-07-25 04:37:35 | terry.reedy | link | issue27611 messages |
2016-07-25 04:37:35 | terry.reedy | create | |
|