summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.mock.rst
diff options
context:
space:
mode:
authorWulian <1055917385@qq.com>2024-08-11 16:35:51 (GMT)
committerGitHub <noreply@github.com>2024-08-11 16:35:51 (GMT)
commitbc9d92c67933917b474e61905451c6408c68e71d (patch)
tree3cbe6bee6f8d7029f26b7bdfdb5c57873088e073 /Doc/library/unittest.mock.rst
parent3aaed083a3f5eb7e490495c460b3dc1ce7451ce8 (diff)
downloadcpython-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 'Doc/library/unittest.mock.rst')
-rw-r--r--Doc/library/unittest.mock.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst
index 757277e..e15f8a4 100644
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -882,7 +882,7 @@ object::
call is an awaitable.
>>> mock = AsyncMock()
- >>> asyncio.iscoroutinefunction(mock)
+ >>> inspect.iscoroutinefunction(mock)
True
>>> inspect.isawaitable(mock()) # doctest: +SKIP
True