Cython has moved to github.

cython-devel

view tests/run/r_starargsonly.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 6309e21af543
children 82d312a9f1fc
line source
1 __doc__ = u"""
2 >>> spam()
3 Args: ()
4 >>> spam(42)
5 Args: (42,)
6 >>> spam("one", 2, "buckle my shoe")
7 Args: ('one', 2, 'buckle my shoe')
8 """
10 def spam(*args):
11 print u"Args:", args