pxd_signature_mismatch.pxd 364 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10

cdef int wrong_args(int x, long y)

cdef long wrong_return_type(int x, int y)

cdef int wrong_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
Stefan Behnel's avatar
Stefan Behnel committed
11 12 13 14

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

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