At the end of section 7.19, the very last example is
class Base:
def yow(self):
print("Base.yow")
class A(Base):
def yow(self):
print("A.yow")
Base.yow(self) # Direct call to parent
class B(Base):
def yow(self):
print("B.yow")
super().yow(self)
class C(A, B):
pass
c = C()
c.yow()
In class B's function yow the line super().yow(self) should be super().yow() as super().you would return bound method .
Thanks
At the end of section 7.19, the very last example is
In class
B's functionyowthe linesuper().yow(self)should besuper().yow()assuper().youwould return bound method .Thanks