Skip to content

Commit cb3d7de

Browse files
committed
Remove usage of asyncio.AbstractChildWatcher
Fixes #637
1 parent 9e6c20a commit cb3d7de

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

uvloop/includes/stdlib.pxi

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ cdef aio_isfuture = getattr(asyncio, 'isfuture', None)
4444
cdef aio_get_running_loop = getattr(asyncio, '_get_running_loop', None)
4545
cdef aio_set_running_loop = getattr(asyncio, '_set_running_loop', None)
4646
cdef aio_debug_wrapper = getattr(asyncio.coroutines, 'debug_wrapper', None)
47-
cdef aio_AbstractChildWatcher = asyncio.AbstractChildWatcher
4847
cdef aio_Transport = asyncio.Transport
4948
cdef aio_FlowControlMixin = asyncio.transports._FlowControlMixin
5049

uvloop/loop.pyx

-18
Original file line numberDiff line numberDiff line change
@@ -2915,24 +2915,6 @@ cdef class Loop:
29152915
"coroutines cannot be used with add_signal_handler()")
29162916

29172917
if sig == uv.SIGCHLD:
2918-
if (hasattr(callback, '__self__') and
2919-
isinstance(callback.__self__, aio_AbstractChildWatcher)):
2920-
2921-
warnings_warn(
2922-
"!!! asyncio is trying to install its ChildWatcher for "
2923-
"SIGCHLD signal !!!\n\nThis is probably because a uvloop "
2924-
"instance is used with asyncio.set_event_loop(). "
2925-
"The correct way to use uvloop is to install its policy: "
2926-
"`asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())`"
2927-
"\n\n", RuntimeWarning, source=self)
2928-
2929-
# TODO: ideally we should always raise an error here,
2930-
# but that would be a backwards incompatible change,
2931-
# because we recommended using "asyncio.set_event_loop()"
2932-
# in our README. Need to start a deprecation period
2933-
# at some point to turn this warning into an error.
2934-
return
2935-
29362918
raise RuntimeError(
29372919
'cannot add a signal handler for SIGCHLD: it is used '
29382920
'by the event loop to track subprocesses')

0 commit comments

Comments
 (0)