mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
124 B
Python
9 lines
124 B
Python
class A(Aa):
|
|
@property
|
|
def x(self, r):
|
|
return r
|
|
|
|
@x.setter
|
|
def x(self, value):
|
|
self._x = ""
|