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.
 
 
 
 

15 line
274 B

  1. cdef class UVIdle(UVHandle):
  2. cdef:
  3. Handle h
  4. bint running
  5. # All "inline" methods are final
  6. cdef _init(self, Loop loop, Handle h)
  7. cdef inline stop(self)
  8. cdef inline start(self)
  9. @staticmethod
  10. cdef UVIdle new(Loop loop, Handle h)