Re: Multiple hierarchies and method overloading

2006-04-25 Thread Philippe Martin
Well, the whole point was to clean up my code: Actually this is what I have: Class A: def A_Func(self, p_param): . Class B: def A_Func(self): . Class C (A,B): A.__init__(self) B.__init__(self) Class D (A,B): A.__init__(self)

Re: Multiple hierarchies and method overloading

2006-04-25 Thread bruno at modulix
Lawrence D'Oliveiro wrote: > In article <[EMAIL PROTECTED]>, > "Ben Cartwright" <[EMAIL PROTECTED]> wrote: > > >>Philippe Martin wrote: >> >> >>>I renamed A_Func(self) to fix that ... but is there a cleaner way around ? >> >>When using multiple inheritence, the order of the base classes matters!

Re: Multiple hierarchies and method overloading

2006-04-25 Thread Lawrence D'Oliveiro
In article <[EMAIL PROTECTED]>, "Ben Cartwright" <[EMAIL PROTECTED]> wrote: >Philippe Martin wrote: > >> I renamed A_Func(self) to fix that ... but is there a cleaner way around ? > >When using multiple inheritence, the order of the base classes matters! When you have to start worrying about com