blob: 7adaa6daabff4b8dbedad260605551a2ca7c4a93 [file] [log] [blame]
class C(object):
def __init__(self):
self._x = None
@property
def x(self):
"""I'm the 'x' property."""
return self._x
c = C()
print(c.x)
del <warning descr="Property 'x' cannot be deleted">c.<caret>x</warning>
<warning descr="Property 'x' cannot be set">c.x</warning> = 1