blob: 655205a3a66824f993d6b4b46ba35e8ea3af602d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# mode: run
cimport cython
cdef class Spam:
cdef dict __dict__
cdef class SuperSpam(Spam):
pass
cdef class MegaSpam:
pass
cdef public class UltraSpam [type UltraSpam_Type, object UltraSpam_Object]:
cdef dict __dict__
cdef class OwnProperty1:
"""
>>> obj = OwnProperty1()
>>> assert obj.__dict__ == {'a': 123}
"""
@property
def __dict__(self):
return {'a': 123}
cdef class OwnProperty2:
"""
>>> obj = OwnProperty2()
>>> assert obj.__dict__ == {'a': 123}
"""
property __dict__:
def __get__(self):
return {'a': 123}
def test_class_attributes():
"""
>>> test_class_attributes()
'bar'
"""
o = Spam()
o.foo = "bar"
return o.foo
def test_subclass_attributes():
"""
>>> test_subclass_attributes()
'bar'
"""
o = SuperSpam()
o.foo = "bar"
return o.foo
def test_defined_class_attributes():
"""
>>> test_defined_class_attributes()
'bar'
"""
o = MegaSpam()
o.foo = "bar"
return o.foo
def test_public_class_attributes():
"""
>>> test_public_class_attributes()
'bar'
"""
o = UltraSpam()
o.foo = "bar"
return o.foo
|