Cython has moved to github.
cython
view tests/compile/extpymemberdef.pyx @ 724:4e4808271bdf
Bump version number.
| author | Robert Bradshaw <robertwb@math.washington.edu> |
|---|---|
| date | Thu Jun 12 16:53:51 2008 -0700 (3 years ago) |
| parents | 612957ef6e8f |
| children | 1a2e04bc1395 |
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 public char a[42]
12 cdef public object o
13 cdef readonly int r
14 cdef readonly Spam e
