STINNER Victor <vstin...@redhat.com> added the comment:

> 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).

----------
nosy: +vstinner

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35580>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to