mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 06:18:32 +07:00
16 lines
265 B
Python
16 lines
265 B
Python
class SuperClass(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
@property
|
|
def new_property(self):
|
|
return 1
|
|
|
|
@new_property.setter
|
|
def new_property(self, value):
|
|
pass
|
|
|
|
@new_property.deleter
|
|
def new_property(self):
|
|
pass
|