diff options
author | Kyle Stanley <aeros167@gmail.com> | 2019-12-30 11:50:19 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2019-12-30 11:50:19 (GMT) |
commit | 89aa7f0ede1a11c020e83f24394593c577a61509 (patch) | |
tree | e570c3365f871fa9e7c82909e48d81c85f3ad718 /Doc/whatsnew | |
parent | 88dce26da6bc4838092128d9a6f1c98bf48b7c90 (diff) | |
download | cpython-89aa7f0ede1a11c020e83f24394593c577a61509.zip cpython-89aa7f0ede1a11c020e83f24394593c577a61509.tar.gz cpython-89aa7f0ede1a11c020e83f24394593c577a61509.tar.bz2 |
bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-16977)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index b315604..ff0fc24 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -290,6 +290,9 @@ Deprecated predicable behavior. (Contributed by Serhiy Storchaka in :issue:`38371`.) +* The explicit passing of coroutine objects to :func:`asyncio.wait` has been + deprecated and will be removed in version 3.11. + (Contributed by Yury Selivanov and Kyle Stanley in :issue:`34790`.) Removed ======= |