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, serhiy.storchaka, terry.reedy, xiang.zhang, zach.ware
Date 2016-08-31.20:46:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472676390.09.0.58127956829.issue27918@psf.upfronthosting.co.za>
In-reply-to
Content
To my surprise, "python -m test test_idle" gives a single flash in Windows.  #22770 modified /Lib/test/support/__init__.py and added the creation and packing of a Label.  Those two lines are gone in repository 3.6 but the flash is still there, I added root.withdraw() at line 469 and the flash is gone.

        try:
            from tkinter import Tk
            root = Tk()
            root.withdraw()
            root.update()
            root.destroy()

I added a Label packing back and the flash is still gone here.

> "use test.support.import_module with no reason " ???
I used import_module in test_idle because I was told to and had to to prevent inappropriate test failures.  Please explain what you mean.
History
Date User Action Args
2016-08-31 20:46:30terry.reedysetrecipients: + terry.reedy, ned.deily, zach.ware, serhiy.storchaka, xiang.zhang
2016-08-31 20:46:30terry.reedysetmessageid: <1472676390.09.0.58127956829.issue27918@psf.upfronthosting.co.za>
2016-08-31 20:46:30terry.reedylinkissue27918 messages
2016-08-31 20:46:30terry.reedycreate