Cython has moved to github.

cython

view tests/compile/forfromelse.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 a8804ba88ce6
children 5905f7b15cb2
line source
1 cdef void spam():
2 cdef int i, j, k
3 for i from 0 <= i < 10:
4 j = k
5 else:
6 k = j
8 # new syntax
9 for 0 <= i < 10:
10 j = i
11 else:
12 j = k