Cython has moved to github.

cython-devel

view tests/run/strconstinclass.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 832e5eaeb740
children b491a0ae2d45
line source
1 __doc__ = u"""
2 >>> c = C()
3 >>> c.x
4 b'foo'
5 """
7 import sys
8 if sys.version_info[0] < 3:
9 __doc__ = __doc__.replace(u" b'", u" '")
11 class C:
12 x = "foo"