summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-runner.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-94597: Add asyncio.EventLoop (#110723)Thomas Grainger2023-10-121-0/+2
| | | This is needed to pave the way for deprecating and eventually killing the event loop policy system (which is over-engineered and rarely used).
* GH-99388: add `loop_factory` parameter to `asyncio.run` (#99462)Kumar Aditya2022-11-141-4/+10
|
* GH-82448: Add thread timeout for loop.shutdown_default_executor (#97561)Kumar Aditya2022-09-281-1/+5
| | | | Co-authored-by: Kyle Stanley <aeros167@gmail.com>
* Clarify asyncio.Runner docs re: loop_factory (#95979)Kumar Aditya2022-08-141-1/+3
|
* Fix duplicate word. (GH-92182)Benjamin Peterson2022-05-021-1/+1
|
* bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)Andrew Svetlov2022-03-301-0/+27
| | | Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
* bpo-47062: Rename factory argument to loop_factory (GH-32113)Andrew Svetlov2022-03-251-2/+2
|
* bpo-47062: Implement asyncio.Runner context manager (GH-31799)Andrew Svetlov2022-03-241-0/+121
Co-authored-by: Zachary Ware <zach@python.org>