DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / tests / run / inline.pyx
12345678910
def test(x): """ >>> test(3) 3 """ return retinput(x) cdef inline int retinput(int x): o = x return o