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*) print sizeof(point*)
cdef extern from *: cdef foo(int i0, int i, list L0, list L, point p0, point p, point* ps):
cdef foo(int, int i, pass
list, list L,
point, point p, point* ps)
cdef class A: cdef class A:
cdef list cdef list
cdef list L cdef list L
# Possibly empty declarators
cdef point(self, int, int i, list, list L, point, point p, point* ps): cdef point(self, int, int i, list, list L, point, point p, point* ps):
pass 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