mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
8 lines
99 B
Python
8 lines
99 B
Python
class C(object):
|
|
@property
|
|
def foo(self):
|
|
return None
|
|
|
|
|
|
class D(C):
|
|
<caret>pass |