答案 0 :(得分:2)
AbstractEventLoop
不使用SelectorEventLoop
,而是使用派生类:ProactorEventLoop
(以及asyncio.get_event_loop()
for Windows)。
您永远不会通过调用它的构造函数来实例化事件循环,但会使用asyncio.new_event_loop()
/ https://www.dropbox.com/s/dr1cit55idwi1m0/english_buisness_message.txt?dl=0
。
请查看asyncio/base_events.py和asyncio/selector_events.py,了解实际实施情况。