Cython has moved to github.

cython

view tests/compile/ctypedefstruct.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
children 92baafe0edf3
line source
1 ctypedef struct order:
2 int spam
3 int eggs
5 cdef order order1
7 order1.spam = 7
8 order1.eggs = 2