您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

15 行
276 B

  1. cdef class UVCheck(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 UVCheck new(Loop loop, Handle h)