summaryrefslogtreecommitdiff
path: root/tests/run/cdef_class_field.pyx
blob: 5012bab8974d7151cda0e5b446783cfb10806007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# mode: run
# tag: exttype
# ticket: t677

"""
>>> str(Foo(4))
'4'
>>> x
3
"""

x = 3
cdef int y

cdef class Foo:
    cdef int x
    cdef int y
    def __init__(self, x):
        self.x = x
    def __str__(self):
        return str(self.x)