mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
12 lines
145 B
Python
12 lines
145 B
Python
class C(object):
|
|
@property
|
|
def foo(self):
|
|
return None
|
|
|
|
|
|
class D(C):
|
|
@property
|
|
def foo(self):
|
|
return super().foo
|
|
|