We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e6c20a commit 7918640Copy full SHA for 7918640
uvloop/includes/stdlib.pxi
@@ -44,7 +44,7 @@ cdef aio_isfuture = getattr(asyncio, 'isfuture', None)
44
cdef aio_get_running_loop = getattr(asyncio, '_get_running_loop', None)
45
cdef aio_set_running_loop = getattr(asyncio, '_set_running_loop', None)
46
cdef aio_debug_wrapper = getattr(asyncio.coroutines, 'debug_wrapper', None)
47
-cdef aio_AbstractChildWatcher = asyncio.AbstractChildWatcher
+cdef aio_AbstractChildWatcher = getattr(asyncio, 'AbstractChildWatcher', object())
48
cdef aio_Transport = asyncio.Transport
49
cdef aio_FlowControlMixin = asyncio.transports._FlowControlMixin
50
0 commit comments