Cython has moved to github.

cython-devel

view tests/run/modbody.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 82d312a9f1fc
line source
1 __doc__ = u"""
2 >>> f()
3 >>> g
4 42
5 >>> x
6 u'spam'
7 >>> y
8 u'eggs'
9 >>> z
10 u'spameggs'
11 """
13 import sys
14 if sys.version_info[0] >= 3:
15 __doc__ = __doc__.replace(u" u'", u" '")
17 def f():
18 pass
20 g = 42
21 x = u"spam"
22 y = u"eggs"
23 if g:
24 z = x + y