Cython has moved to github.
cython-devel
view tests/compile/extpymemberdef.pyx @ 3091:1a2e04bc1395
remove dependency on structmember.h
| author | Lisandro Dalcin <dalcinl@gmail.com> |
|---|---|
| date | Thu Mar 11 17:21:13 2010 -0300 (2 years ago) |
| parents | a8804ba88ce6 |
| children |
line source
1 cdef class Spam:
2 cdef public char c
3 cdef public int i
4 cdef public long l
5 cdef public unsigned char uc
6 cdef public unsigned int ui
7 cdef public unsigned long ul
8 cdef public float f
9 cdef public double d
10 cdef public char *s
11 cdef readonly char a[42]
12 cdef public object o
13 cdef readonly int r
14 cdef readonly Spam e
