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 mickp
Recipients davin, mickp, paul.moore, pitrou, steve.dower, tim.golden, zach.ware
Date 2017-07-20.13:42:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1500558123.88.0.231995129953.issue30975@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for confirming. If anyone finds this and is looking for a workaround, here's what I'm using:

while not event.is_set()
    try:
        time.sleep(timeout)
    except (KeyboardInterrupt, IOError):
        pass
History
Date User Action Args
2017-07-20 13:42:03mickpsetrecipients: + mickp, paul.moore, pitrou, tim.golden, zach.ware, steve.dower, davin
2017-07-20 13:42:03mickpsetmessageid: <1500558123.88.0.231995129953.issue30975@psf.upfronthosting.co.za>
2017-07-20 13:42:03mickplinkissue30975 messages
2017-07-20 13:42:03mickpcreate