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 /Lib/asyncio/unix_events.py | |
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 'Lib/asyncio/unix_events.py')
-rw-r--r-- | Lib/asyncio/unix_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index 2796e39..0227eb5 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -95,7 +95,7 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop): Raise RuntimeError if there is a problem setting up the handler. """ if (coroutines.iscoroutine(callback) or - coroutines.iscoroutinefunction(callback)): + coroutines._iscoroutinefunction(callback)): raise TypeError("coroutines cannot be used " "with add_signal_handler()") self._check_signal(sig) |