Cython has moved to github.

cython-devel

view tests/run/r_mang1.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
line source
1 __doc__ = u"""
2 >>> import re
3 >>> t
4 (u'2',)
5 >>> t == re.search('(\\d+)', '-2.80 98\\n').groups()
6 True
7 """
9 import sys
10 if sys.version_info[0] >= 3:
11 __doc__ = __doc__.replace(u"(u'", u"('")
13 # this is a string constant test, not a test for 're'
15 import re
16 t = re.search(u'(\d+)', u'-2.80 98\n').groups()