Repository URL to install this package:
|
Version:
0.29.7 ▾
|
# mode: compile
cdef int spam() except 42:
pass
cdef float eggs() except 3.14:
pass
cdef char *grail() except NULL:
pass
cdef int tomato() except *:
pass
cdef int brian() except? 0:
pass
cdef int silly() except -1:
pass
spam()
eggs()
grail()
tomato()
brian()
silly()