Cython has moved to github.

cython

view tests/compile/ctypedefenum.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
line source
1 ctypedef enum parrot_state:
2 alive = 1
3 dead = 2
5 cdef parrot_state polly
7 polly = dead