mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 20:01:20 +07:00
GitOrigin-RevId: fa706b67efd8d3caafc15fa101514dd7cf1721b1
12 lines
300 B
Python
12 lines
300 B
Python
class C(object):
|
|
def __init__(self, value):
|
|
pass
|
|
|
|
def getx(self):
|
|
return self._x
|
|
|
|
def setx(self, value):
|
|
<weak_warning descr="Instance attribute '_x' defined outside `__init__`">self._x</weak_warning> = value
|
|
|
|
x = property(getx, setx, doc="The 'x' property.")
|