bb1982f033da9458954f75b3cad7c3be0c78370f
[cython.git] / tests / broken / r_excval.pyx
1 cdef int tomato() except -1:
2     print "Entering tomato"
3     raise Exception("Eject! Eject! Eject!")
4     print "Leaving tomato"
5     
6 cdef void sandwich():
7     print "Entering sandwich"
8     tomato()
9     print "Leaving sandwich"
10
11 def snack():
12     print "Entering snack"
13     tomato()
14     print "Leaving snack"
15
16 def lunch():
17     print "Entering lunch"
18     sandwich()
19     print "Leaving lunch"