enabled most remaining tests from the 'broken' directory
[cython.git] / tests / run / cstringmeth.pyx
1 __doc__ = u"""
2 >>> y
3 (b'1', b'2', b'3')
4 >>> x
5 b'1foo2foo3'
6 """
7
8 import sys
9 if sys.version_info[0] < 3:
10     __doc__ = __doc__.replace(u"b'", u"'")
11
12
13 y = ('1','2','3')
14
15 x = 'foo'.join(y)