Cython has moved to github.

cython

view tests/compile/while.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 612957ef6e8f
children
line source
1 def f(a, b):
2 cdef int i = 5
4 while a:
5 x = 1
7 while a+b:
8 x = 1
10 while i:
11 x = 1
12 else:
13 x = 2
15 while i:
16 x = 1
17 break
18 x = 2
19 else:
20 x = 3
22 while i:
23 x = 1
24 continue
25 x = 2