Cython has moved to github.

cython-devel

view tests/run/rodriguez_1.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 ff6249a604c2
children
line source
1 __doc__ = u"""
2 >>> b = B()
3 >>> b.t
4 {1: ((1, 2, 3),), 2: (1, 2, 3)}
5 """
7 class B:
8 def __init__(self):
9 self.t = {
10 1 : (
11 (1, 2, 3)
12 ,
13 )
15 , 2 : ( 1, 2, 3)
16 }