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 vstinner
Recipients asvetlov, jeffr@livedata.com, vstinner, yselivanov
Date 2019-01-15.12:34:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547555669.18.0.482600381475.issue35580@roundup.psfhosted.org>
In-reply-to
Content
> Am I correct that only one thread calls `GetQueuedCompletionStatus` on a given `iocp` object in asyncio under Windows `IocpProactor`?

An asyncio event loop must only run in a single thread at the same time. It doesn't make sense to run the same event loop multiple times in parallel and it is not supported (most asyncio classes are not thread-safe, there is no need to be thread-safe).
History
Date User Action Args
2019-01-15 12:34:31vstinnersetrecipients: + vstinner, asvetlov, jeffr@livedata.com, yselivanov
2019-01-15 12:34:29vstinnersetmessageid: <1547555669.18.0.482600381475.issue35580@roundup.psfhosted.org>
2019-01-15 12:34:29vstinnerlinkissue35580 messages
2019-01-15 12:34:29vstinnercreate