diff options
author | Wulian <1055917385@qq.com> | 2024-08-11 16:35:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-11 16:35:51 (GMT) |
commit | bc9d92c67933917b474e61905451c6408c68e71d (patch) | |
tree | 3cbe6bee6f8d7029f26b7bdfdb5c57873088e073 /Misc/NEWS.d | |
parent | 3aaed083a3f5eb7e490495c460b3dc1ce7451ce8 (diff) | |
download | cpython-bc9d92c67933917b474e61905451c6408c68e71d.zip cpython-bc9d92c67933917b474e61905451c6408c68e71d.tar.gz cpython-bc9d92c67933917b474e61905451c6408c68e71d.tar.bz2 |
gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)
Deprecate `asyncio.iscoroutinefunction` in favor of `inspect.iscoroutinefunction`.
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-08-10-10-21-44.gh-issue-122858.ZC1rJD.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-08-10-10-21-44.gh-issue-122858.ZC1rJD.rst b/Misc/NEWS.d/next/Library/2024-08-10-10-21-44.gh-issue-122858.ZC1rJD.rst new file mode 100644 index 0000000..d452ad6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-08-10-10-21-44.gh-issue-122858.ZC1rJD.rst @@ -0,0 +1,2 @@ +Deprecate :func:`!asyncio.iscoroutinefunction` in favor of +:func:`inspect.iscoroutinefunction`. |