You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
274 B

cdef class UVIdle(UVHandle):
cdef:
Handle h
bint running
# All "inline" methods are final
cdef _init(self, Loop loop, Handle h)
cdef inline stop(self)
cdef inline start(self)
@staticmethod
cdef UVIdle new(Loop loop, Handle h)