mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 20:05:01 +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()
|
|
|