Cython has moved to github.

cython-devel

view tests/run/moduletryexcept.pyx @ 1622:4f0327bdebc9

test for temp allocation bug in call
author Robert Bradshaw <robertwb@math.washington.edu>
date Sat Jan 17 01:25:34 2009 -0800 (3 years ago)
parents
children 6834b6f640ae
line source
1 __doc__ = u"""
2 >>> a
3 2
4 """
6 a = 0
8 try:
9 raise KeyError
10 except AttributeError:
11 a = 1
12 except KeyError:
13 a = 2
14 except:
15 a = 3