[3.13] Mention loop_factory argument in docstring for asyncio.run() (GH-128288) (#128291)

Mention loop_factory argument in docstring for asyncio.run() (GH-128288)
(cherry picked from commit 0b5f1fae57)

Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-12-27 15:22:25 +01:00 committed by GitHub
parent bad6b7bfca
commit aea2e03b27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -168,6 +168,7 @@ def run(main, *, debug=None, loop_factory=None):
running in the same thread. running in the same thread.
If debug is True, the event loop will be run in debug mode. If debug is True, the event loop will be run in debug mode.
If loop_factory is passed, it is used for new event loop creation.
This function always creates a new event loop and closes it at the end. This function always creates a new event loop and closes it at the end.
It should be used as a main entry point for asyncio programs, and should It should be used as a main entry point for asyncio programs, and should