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:
Emmanuel Arias 2019-09-25 05:53:49 -03:00 committed by Miss Islington (bot)
parent 57dc7d5ae8
commit 17deb16883
2 changed files with 16 additions and 0 deletions

View file

@ -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():