Hey,
When you have multiple inheritance and you e.g. want to explicitely call
__init__ of one of the classes inherited from, that is not the first in the
list of classes to inherit from.
Cheers,
Lars
Lars Liedtke
Senior Software Developer
[Tel.] +49 721 98993-
[Fax] +49 721 98993-
[E-Ma
As a follow-up to my yesterday's question - are there any recommendations
on the usage of super()?
It's clear that super() can be used to invoke parent's:
- instance methods
- static methods
- constants ("static" attributes in the parent class, e.g. super().NUMBER).
This all works, but are the