Possible duplicate:
Using Python 3 super ()
The documentation for Python 3.2 says:
If the second argument is omitted, the returning object is returned unbound
In my understanding, unbound (as in the "unbound-to-instance" object) is what came back from super (class, class). So what did "unbound" mean in super (class)? How do you connect it?
class Base: def printme(self): print("I'm base") class Derived(Base): def printme(self): print("I'm derived") class Derived2(Derived): def printme(self): super().printme()
source share