Cython has moved to github.

cython-devel

view tests/run/extinstantiate.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
line source
1 __doc__ = u"""
2 >>> type(f()).__name__
3 'Spam'
4 """
6 cdef class Spam:
7 pass
9 def f():
10 s = Spam()
11 return s