You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
234 B
16 lines
234 B
# test super with multiple inheritance
|
|
|
|
class A:
|
|
def foo(self):
|
|
print('A.foo')
|
|
|
|
class B:
|
|
def foo(self):
|
|
print('B.foo')
|
|
|
|
class C(A, B):
|
|
def foo(self):
|
|
print('C.foo')
|
|
super().foo()
|
|
|
|
C().foo()
|
|
|