Am Fri, 17 Dec 2004 02:17:38 -0600 schrieb Robert Dick:
> Derived classes sometimes need to delegate portions of the work in overridden
> methods to methods in their base classes. This was traditionally done with
> explicit calls in python, e.g.,
>
> class Base:
> def __init__(self):
> p
Derived classes sometimes need to delegate portions of the work in overridden
methods to methods in their base classes. This was traditionally done with
explicit calls in python, e.g.,
class Derived(Left, Right):
def __init__(self, myarg, larg, rarg):
Left.__init__(self, larg)
Right._