mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
237 B
Python
15 lines
237 B
Python
class Base(object):
|
|
name = 'foo'
|
|
|
|
class MyClass(Base):
|
|
def unique_method(self):
|
|
pass
|
|
|
|
def other_method(self):
|
|
pass
|
|
|
|
def func(x):
|
|
x.__init__()
|
|
print(x.name)
|
|
x.unique_method()
|
|
x.<caret> |