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)
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!
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