mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
160 B
Python
14 lines
160 B
Python
|
|
class B():
|
|
def m(self):
|
|
print(2)
|
|
|
|
class A(object):
|
|
def m(self):
|
|
print(1)
|
|
|
|
class C(B, A):
|
|
def m<caret>(self):
|
|
super(C, self).m()
|
|
print(3)
|