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 2016-09-01.00:33:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472690016.39.0.67314028817.issue27922@psf.upfronthosting.co.za>
In-reply-to
Content
This issue follows-up on #27732, which suppressed beeps during IDLE tests, I want to also suppress the flashing of tk widget boxes, which has become visually obnoxious with the increasing number of tests.

Adding root.withdraw() after root = Tk() solves the problem for all current tests.  For test_textview, this requires the fix of a bad cleanup call and addition of another.  It appears that the textview toplevels must be destroyed before the cleanup call to root.update_idletasks() or else they are made visible.  The idletasks call is needed to avoid '''can't invoke "event" command''' (even with all toplevels gone).

The backports will have fewer changes because there are fewer tests.
History
Date User Action Args
2016-09-01 00:33:36terry.reedysetrecipients: + terry.reedy
2016-09-01 00:33:36terry.reedysetmessageid: <1472690016.39.0.67314028817.issue27922@psf.upfronthosting.co.za>
2016-09-01 00:33:35terry.reedylinkissue27922 messages
2016-09-01 00:33:35terry.reedycreate