Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix and improve asyncio.run() docs #16403

Merged
merged 11 commits into from
Oct 1, 2019
Prev Previous commit
Next Next commit
Fix indent
  • Loading branch information
aeros authored Sep 27, 2019
commit d69b7f927fbe229d391cb26f6355d05c22e36bb2
4 changes: 2 additions & 2 deletions Lib/asyncio/runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ 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 the result of *coro* execution. If *coro* is not a :term:`coroutine`,
a :exc:`ValueError` is raised.
Return the result of *coro* execution. If *coro* is not a :term:`coroutine`,
a :exc:`ValueError` is raised.

Example:

Expand Down