Cython has moved to github.

cython-devel

view tests/run/print.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 95312b19ee49
children 82d312a9f1fc
line source
1 __doc__ = u"""
2 >>> f(1, 'test')
3 <BLANKLINE>
4 1
5 1 test
6 1 test
7 1 test 42 spam
8 """
10 def f(a, b):
11 print
12 print a
13 print a,
14 print b
15 print a, b
16 print a, b,
17 print 42, u"spam"