diff options
author | Yury Selivanov <yury@magic.io> | 2018-05-17 17:44:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-17 17:44:00 (GMT) |
commit | d8d715f5148d0c10e93a79bc4172fbd9c5b3a86e (patch) | |
tree | 214adbc40befeecea1feb2f5c9ea813274fbac38 /Doc/library/asyncio-task.rst | |
parent | 48b1f3773cecb0aec2b14d972bf8453e4e8f807f (diff) | |
download | cpython-d8d715f5148d0c10e93a79bc4172fbd9c5b3a86e.zip cpython-d8d715f5148d0c10e93a79bc4172fbd9c5b3a86e.tar.gz cpython-d8d715f5148d0c10e93a79bc4172fbd9c5b3a86e.tar.bz2 |
asyncio/docs: Mark asyncio.run() as provisional in 3.7. (#6946)
Diffstat (limited to 'Doc/library/asyncio-task.rst')
-rw-r--r-- | Doc/library/asyncio-task.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 364323d..db0e04a 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -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: |