Cython has moved to github.

cython-devel

view tests/run/varargdecl.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 612957ef6e8f
children ef26a1004367
line source
1 __doc__ = u"""
2 >>> test()
3 """
5 cdef grail(char *blarg, ...):
6 pass
8 def test():
9 grail("test")
10 grail("test", "toast")