Expose null awaitables

This commit is contained in:
ZipFile 2025-06-02 22:46:57 +00:00
parent c97a0cc515
commit c1f14a876a

View File

@ -697,3 +697,10 @@ cdef inline object __future_result(object instance):
future_result = asyncio.Future()
future_result.set_result(instance)
return future_result
cdef class NullAwaitable:
pass
cdef NullAwaitable NULL_AWAITABLE