Commit 8cee959e authored by Robert Bradshaw's avatar Robert Bradshaw

fix tests

parent 3b97951e
cdef struct point:
double x
double y
double z
cdef foo(int, int i,
list, list L,
point, point p, point* ps)
cdef struct point:
double x
double y
double z
print sizeof(point*)
cdef extern from *:
cdef foo(int, int i,
list, list L,
point, point p, point* ps)
cdef foo(int i0, int i, list L0, list L, point p0, point p, point* ps):
pass
cdef class A:
cdef list
cdef list L
# Possibly empty declarators
cdef point(self, int, int i, list, list L, point, point p, point* ps):
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment