mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
11 lines
162 B
Python
11 lines
162 B
Python
class X(object):
|
|
def foo(self):
|
|
pass
|
|
|
|
class A():
|
|
def service(self):
|
|
class B(X):
|
|
def foo(self):
|
|
super().foo()
|
|
|