asyncio/docs: Mark asyncio.run() as provisional in 3.7. (#6946)

This commit is contained in:
Yury Selivanov 2018-05-17 13:44:00 -04:00 committed by GitHub
parent 48b1f3773c
commit d8d715f514
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -108,6 +108,8 @@ Coroutines (and tasks) can only run when the event loop is running.
programs, and should ideally only be called once.
.. versionadded:: 3.7
**Important:** this has been been added to asyncio in Python 3.7
on a :term:`provisional basis <provisional api>`.
.. _asyncio-hello-world-coroutine: