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 / errors / pxd_signature_mismatch.pxd
Size: Mime:
# OK

cdef int wider_exception_check(int x, int y) except? 0

cdef int no_exception_raised(int x, int y) except *

cdef int any_exception_value1(int x, int y) except *

cdef int any_exception_value2(int x, int y) except *

cdef int any_exception_value3(int x, int y) except *

cdef int any_exception_value4(int x, int y) except *

cdef int optimised_exception_value(int x, int y) except? -1

# NOK

cdef int wrong_args(int x, long y)

cdef long wrong_return_type(int x, int y)

cdef int foreign_exception_value(int x, int y) except 0

cdef int narrower_exception_check(int x, int y) except 0

cdef int wrong_exception_value(int x, int y) except 0

cdef int wrong_exception_value_check(int x, int y) except 0

cdef int wrong_exception_value_optimised_check(int x, int y) except? -2

cdef int wrong_exception_value_optimised(int x, int y) except -2

cdef int narrower_exception_check_optimised(int x, int y) except -1