mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
11 lines
169 B
Python
11 lines
169 B
Python
class X(object):
|
|
def foo(self):
|
|
pass
|
|
|
|
class A():
|
|
def service(self):
|
|
class B(X):
|
|
def foo(self):
|
|
super(B, self).foo()
|
|
|