Cython has moved to github.

cython-devel

view tests/run/cstringmeth.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 612957ef6e8f
children b491a0ae2d45
line source
1 __doc__ = u"""
2 >>> y
3 (b'1', b'2', b'3')
4 >>> x
5 b'1foo2foo3'
6 """
8 import sys
9 if sys.version_info[0] < 3:
10 __doc__ = __doc__.replace(u"b'", u"'")
13 y = ('1','2','3')
15 x = 'foo'.join(y)