Skip to content

Instantly share code, notes, and snippets.

View leaver2000's full-sized avatar
๐Ÿ˜

Jason Leaver leaver2000

๐Ÿ˜
View GitHub Profile
@leaver2000
leaver2000 / app._api.pyx
Last active September 13, 2023 20:59
Cython project for test coverage
cdef int func_1():
return 1
cdef int func_any():
return 10
def cy_func(num:int) -> int:
if num == 1:
return func_1()