mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
9 lines
120 B
Python
9 lines
120 B
Python
class A(Aa):
|
|
@property
|
|
def x(self, r):
|
|
return r
|
|
|
|
@x.setter
|
|
def x(self, r):
|
|
self._x = ""
|