Cython has moved to github.

cython

view tests/compile/tryfinally.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, x):
2 cdef int i
3 a = b + c
5 try:
6 return
7 raise a
8 finally:
9 c = a - b
11 for a in b:
12 try:
13 continue
14 break
15 c = a * b
16 finally:
17 i = 42