Cython has moved to github.

cython-devel

view tests/run/addressof.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 585d725fe537
children 82d312a9f1fc
line source
1 __doc__ = u"""
2 >>> f(5)
3 5
4 """
6 def f(int a):
7 cdef int i,j
8 cdef int *p
9 i = a
10 p = &i
11 j = p[0]
12 return j