mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
12 lines
160 B
Python
12 lines
160 B
Python
class A(object):
|
|
@property
|
|
def x(self):
|
|
"Does things to X"
|
|
return 1
|
|
|
|
@x.setter
|
|
def x(self, v):
|
|
"Sets X"
|
|
self.__x = v
|
|
|
|
A().<the_ref>x = 1 |