mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
bpo-38260: Add Docs on asyncio.run (GH-16337)
Add docs about return and raise exception on asyncio.run https://bugs.python.org/issue38260 Automerge-Triggered-By: @asvetlov
This commit is contained in:
parent
57dc7d5ae8
commit
17deb16883
2 changed files with 16 additions and 0 deletions
|
@ -21,6 +21,10 @@ def run(main, *, debug=False):
|
|||
It should be used as a main entry point for asyncio programs, and should
|
||||
ideally only be called once.
|
||||
|
||||
Return a result of *coro* execution, or raise a RuntimeError
|
||||
if `asyncio.run()`is called from a running event loop, or a ValueError
|
||||
if `main` is not a courutine.
|
||||
|
||||
Example:
|
||||
|
||||
async def main():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue