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 cheryl.sabella
Recipients cheryl.sabella, terry.reedy
Date 2017-08-26.23:33:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503790393.73.0.845166108083.issue31284@psf.upfronthosting.co.za>
In-reply-to
Content
I saw it on my PR for the tests in outwin (issue30617) and I also found a comment from someone else in test_paragraph.py about it.

I can reproduce it with this code:
from idlelib import outwin
from tkinter import Tk, Text
root = Tk()
w =  outwin.OutputWindow(None, None, None, root)
w.text = Text(root)
root.mainloop()


I agree that it would be best to fix the root of the problem.  I thought maybe with the test, it's the way the OutputWindow is created  I tried adding an flist, but that still didn't suppress the warning.
History
Date User Action Args
2017-08-26 23:33:13cheryl.sabellasetrecipients: + cheryl.sabella, terry.reedy
2017-08-26 23:33:13cheryl.sabellasetmessageid: <1503790393.73.0.845166108083.issue31284@psf.upfronthosting.co.za>
2017-08-26 23:33:13cheryl.sabellalinkissue31284 messages
2017-08-26 23:33:13cheryl.sabellacreate