Re: Potential improvement on delegation via explicit calls and super

2004-12-17 Thread Thomas Guettler
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

Potential improvement on delegation via explicit calls and super

2004-12-17 Thread 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 Derived(Left, Right): def __init__(self, myarg, larg, rarg): Left.__init__(self, larg) Right._