mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 01:53:51 +07:00
8 lines
131 B
Python
8 lines
131 B
Python
class B:
|
|
def foo(self, text):
|
|
print(type(self), text)
|
|
|
|
|
|
class C(B):
|
|
def foo2(self, text):
|
|
super().foo(text) |