Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / compile / excvaldecl.pyx
Size: Mime:
# 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()