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 yselivanov
Recipients Ludovic.Gasc, Maxime S, gvanrossum, serhiy.storchaka, terry.reedy, yselivanov
Date 2016-07-27.00:50:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469580640.38.0.71762557487.issue27546@psf.upfronthosting.co.za>
In-reply-to
Content
> A proper solution IMO should somehow merge the selectors so that a
> single select() or whatever wakes up when either network I/O happens
> or a UI event comes in (which could be something that Tk transparently
> handles but it still needs to be given the chance, through
> root.update()).

I think we can do something similar to self-pipe trick: have a pipe
and a reader for it registered with 'loop.add_reader'. Whenever
a UI thread have an event to process, it should write a byte to the
pipe.

I'm not sure if there's a way to do that with Tk.
History
Date User Action Args
2016-07-27 00:50:40yselivanovsetrecipients: + yselivanov, gvanrossum, terry.reedy, Ludovic.Gasc, serhiy.storchaka, Maxime S
2016-07-27 00:50:40yselivanovsetmessageid: <1469580640.38.0.71762557487.issue27546@psf.upfronthosting.co.za>
2016-07-27 00:50:40yselivanovlinkissue27546 messages
2016-07-27 00:50:39yselivanovcreate