Cython has moved to github.

cython-devel

view tests/run/backquote.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 b4df1d2367c5
children 82d312a9f1fc
line source
1 __doc__ = u"""
2 >>> f(20)
3 '20'
4 >>> f('test')
5 "'test'"
7 >>> g()
8 '42'
9 """
11 def f(obj2):
12 obj1 = `obj2`
13 return obj1
15 def g():
16 obj1 = `42`
17 return obj1