16 lines
180 B
Python
16 lines
180 B
Python
class C:
|
|
def foobar(self):
|
|
a = 1
|
|
|
|
class B(C):
|
|
def barfoo(self):
|
|
d = 1
|
|
|
|
class F(C, B):
|
|
def raboof(self):
|
|
e = 1
|
|
|
|
C.foobar()
|
|
F.raboof()
|
|
B.foobar()
|