DEBSOURCES
Skip Quicknav
sources / cython / 3.1.6%2Bdfsg-2 / tests / run / addressof.pyx
1234567891011
def f(int a): """ >>> f(5) 5 """ cdef int i,j cdef int *p i = a p = &i j = p[0] return j