Cython has moved to github.

cython

view tests/compile/for.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 def f(a, b, c):
2 cdef int i
3 for a in b:
4 i = 1
5 continue
6 i = 2
7 break
8 i = 3
10 for i in b:
11 i = 1
13 for a in "spam":
14 i = 1
16 for a[b] in c:
17 i = 1
19 for a,b in c:
20 i = 1
22 for a in b,c:
23 i = 1