diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2019-05-16 14:52:10 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-16 14:52:10 (GMT) |
commit | 68b34a720485f399e8699235b8f4e08f227dd43b (patch) | |
tree | 49bbe28097e67a4ffbf9c39d9b5b143c5cbe607d /Doc | |
parent | dbacfc227381fbc7b3c886ea0bd7806ab3dc62c2 (diff) | |
download | cpython-68b34a720485f399e8699235b8f4e08f227dd43b.zip cpython-68b34a720485f399e8699235b8f4e08f227dd43b.tar.gz cpython-68b34a720485f399e8699235b8f4e08f227dd43b.tar.bz2 |
bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)
The second attempt. Now deprecate `@coroutine` only, keep `yield from fut` as is.
https://bugs.python.org/issue36921
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio-task.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index a1297f5..e7cf39b 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -916,12 +916,13 @@ enforced. async def main(): await old_style_coroutine() - This decorator is **deprecated** and is scheduled for removal in - Python 3.10. - This decorator should not be used for :keyword:`async def` coroutines. + .. deprecated-removed:: 3.8 3.10 + + Use :keyword:`async def` instead. + .. function:: iscoroutine(obj) Return ``True`` if *obj* is a :ref:`coroutine object <coroutine>`. |