DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / tests / run / ishimoto2.pyx
1234567891011121314
class C: """ >>> C().xxx(5) 5 >>> C().xxx() 'a b' >>> C().xxx(42) 42 >>> C().xxx() 'a b' """ def xxx(self, p="a b"): return p