mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +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 = ""
|