mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
12 lines
167 B
Python
12 lines
167 B
Python
class A(object):
|
|
@property
|
|
def x(self):
|
|
"Does things to X"
|
|
return 1
|
|
|
|
@x.deleter
|
|
def x(self, v):
|
|
"Deletes X"
|
|
self.__x = None
|
|
|
|
del A().<the_ref>x |