Cython has moved to github.

cython

view tests/compile/tryexcept.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 6834b6f640ae
line source
1 def f(a, b, c, x):
2 cdef int i
3 a = b + c
5 try:
6 i = 1
7 raise x
8 i = 2
9 except a:
10 i = 3
12 try:
13 i = 1
14 except a:
15 i = 2
16 except b:
17 i = 3
19 try:
20 i = 1
21 except a, b:
22 i = 2
24 try:
25 i = 1
26 except a:
27 i = 2
28 except:
29 i = 3
31 try:
32 i = 1
33 except (a, b), c[42]:
34 i = 2
36 for a in b:
37 try:
38 c = x * 42
39 except:
40 i = 17
42 try:
43 i = 1
44 except:
45 raise