We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6a947 commit ea6d979Copy full SHA for ea6d979
uvloop/loop.pyx
@@ -44,7 +44,7 @@ cdef isfuture(obj):
44
if aio_isfuture is None:
45
return isinstance(obj, aio_Future)
46
else:
47
- return getattr(obj, '_asyncio_future_blocking', None) is not None
+ return aio_isfuture(obj)
48
49
50
@cython.no_gc_clear
0 commit comments