Cython has moved to github.

cython

view tests/compile/enumintcompat.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 5905f7b15cb2
line source
1 cdef enum E:
2 a
4 cdef enum G:
5 b
7 cdef void f():
8 cdef E e
9 cdef G g
10 cdef int i, j
11 cdef float f, h
12 i = j | e
13 i = e | j
14 i = j ^ e
15 i = j & e
16 i = j << e
17 i = j >> e
18 i = j + e
19 i = j - e
20 i = j * e
21 i = j / e
22 i = j % e
23 # f = j ** e # Cython prohibits this
24 i = e + g
25 f = h