Cython has moved to github.

cython-devel

view tests/run/classpass.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 >>> s = Spam()
3 >>> s.__class__.__name__
4 'Spam'
6 >>> s = SpamT()
7 >>> type(s).__name__
8 'SpamT'
9 """
11 class Spam: pass
13 class SpamT(object): pass