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 pitrou
Recipients giampaolo.rodola, pitrou, vstinner, yselivanov
Date 2017-11-06.22:16:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510006576.71.0.213398074469.issue31960@psf.upfronthosting.co.za>
In-reply-to
Content
I'm not sure what the desired semantics for Futures and multiple loops is.  On the one hand, there is little point in having two event loops in the same thread at once (except for testing purposes).  On the other hand, the Future implementation is entirely not thread-safe (btw, the constructor optimistically claims the done callbacks are scheduled using call_soon_threadsafe(), but the implementation actually calls call_soon()).
History
Date User Action Args
2017-11-06 22:16:16pitrousetrecipients: + pitrou, vstinner, giampaolo.rodola, yselivanov
2017-11-06 22:16:16pitrousetmessageid: <1510006576.71.0.213398074469.issue31960@psf.upfronthosting.co.za>
2017-11-06 22:16:16pitroulinkissue31960 messages
2017-11-06 22:16:16pitroucreate