Cython has moved to github.

cython-devel

view tests/run/altet2.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
line source
1 __doc__ = u"""
2 >>> iter(C())
3 Traceback (most recent call last):
4 TypeError: iter() returned non-iterator of type 'NoneType'
5 """
7 cdef class C:
9 def __iter__(self):
10 "This is a doc string."