summaryrefslogtreecommitdiff
path: root/tests/run/strconstinclass.pyx
blob: ea8f3cef2f246c47a3d92c651994947449bf4ffd (plain)
1
2
3
4
5
6
7
8
__doc__ = u"""
    >>> c = C()
    >>> c.x
    'foo'
"""

class C:
    x = "foo"