Partial merge of trunk progress. Some tests still fail.
[cython.git] / tests / run / r_jeff_epler_1.pyx
1 def blowup(p):
2     """
3     >>> blowup([2, 3, 5])
4     1
5     """
6     cdef int n, i
7     n = 10
8     i = 1
9     return n % p[i]