---
title: Flowchart for asyncio.run
---
flowchart TD
A["asyncio.run(coro, loop_factory=...)"] --> B{loop_factory}
B -->|loop_factory is None| D{platform}
B -->|loop_factory is not None| E["loop = loop_factory()"]
D --> |Unix| F["loop = SelectorEventLoop()"]
D --> |Windows| G["loop = ProactorEventLoop()"]
E --> H
F --> H
G --> H
H["loop.run_until_complete(coro)"]
asyncio's policy system deprecation
asyncio's policy system1 has been a source of confusion and problems in asyncio for a very long time. The policies no longer serve a real purpose. Loops are always per thread, there is no need to have a "current loop" when no loop is currently running. This issue discusses the changes to deprecate it in Python 3.14 and schedule its removal in 3.16 or later.
The usual user applications would use the runner APIs (see flowchart) while those who want more control like Jupyter project can create an event loop and manage it themselves, the difference would be that instead of them first getting the policy then event loop then can directly create it like
rather than currently
See these discussions for more background:
Functions and classes to be deprecated and later removed
asyncio.get_event_loop_policyasyncio.set_event_loop_policyasyncio.AbstractEventLoopPolicyasyncio.DefaultEventLoopPolicyasyncio.WindowsSelectorEventLoopPolicyasyncio.WindowsProactorEventLoopPolicyasyncio.set_event_loopFunctions to be modified
asyncio.get_event_loop- In 3.16 or later this will become an alias toget_running_loop.asyncio.new_event_loop- In 3.16 or later this will ignore custom policies and will be an alias toasyncio.EventLoopasyncio.run&asyncio.Runner- In 3.16 or later this will be modified to not use policy system as that will be gone and rely solely on loop_factory.The Grand Plan
set_event_loop->_set_event_loopandset_event_loopwill emit the warning then call_set_event_loopas its underlying implementation. This way internally asyncio can still call these functions until they are removed without need of many ignore warnings and the tests too can easily be adapted.The Future
--- title: Flowchart for asyncio.run --- flowchart TD A["asyncio.run(coro, loop_factory=...)"] --> B{loop_factory} B -->|loop_factory is None| D{platform} B -->|loop_factory is not None| E["loop = loop_factory()"] D --> |Unix| F["loop = SelectorEventLoop()"] D --> |Windows| G["loop = ProactorEventLoop()"] E --> H F --> H G --> H H["loop.run_until_complete(coro)"]Linked PRs
asyncio.set_event_loop_policy#128024asyncio.get_event_loop_policy#128053asyncio.set_event_loop#128218test_tasks.py(GH-128172) #131805test_tasks.py(GH-128172) #131806Footnotes
https://docs.python.org/3.14/library/asyncio-policy.html ↩