diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-11-14 18:18:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 18:18:51 (GMT) |
commit | f63002755d3b7c0bb2e452f158769f19fcf3b850 (patch) | |
tree | e5d4dd832ee63f246a72bcc78a9dda88fad4e262 /Doc/whatsnew/3.12.rst | |
parent | f5e326e2b6b3f008ed71ccf9e6c3e18a6618ea45 (diff) | |
download | cpython-f63002755d3b7c0bb2e452f158769f19fcf3b850.zip cpython-f63002755d3b7c0bb2e452f158769f19fcf3b850.tar.gz cpython-f63002755d3b7c0bb2e452f158769f19fcf3b850.tar.bz2 |
GH-99388: add `loop_factory` parameter to `asyncio.run` (#99462)
Diffstat (limited to 'Doc/whatsnew/3.12.rst')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index d30e419..bb08e44 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -217,6 +217,11 @@ asyncio and will be removed in Python 3.14. (Contributed by Kumar Aditya in :gh:`94597`.) +* Add *loop_factory* parameter to :func:`asyncio.run` to allow specifying + a custom event loop factory. + (Contributed by Kumar Aditya in :gh:`99388`.) + + pathlib ------- |