Thanks,
I'll try that.
Philippe
Ben Cartwright wrote:
> Philippe Martin wrote:
>> I have something like this:
>>
>> Class A:
>> def A_Func(self, p_param):
>> .
>> Class B:
>> def A_Func(self):
>> .
>>
>> Class C (A,B):
>> A.__init__(self)
>>
Philippe Martin wrote:
> Hi,
>
> I have something like this:
>
> Class A:
> def A_Func(self, p_param):
> .
> Class B:
> def A_Func(self):
> .
>
> Class C (A,B):
> A.__init__(self)
> B.__init__(self)
>
> .
>
> self.A_Func() #
Philippe Martin wrote:
> Hi,
>
>
>
>
> I have something like this:
>
> Class A:
> def A_Func(self, p_param):
> .
> Class B:
> def A_Func(self):
> .
>
> Class C (A,B):
> A.__init__(self)
If that's really your code, you should have an exception
Philippe Martin wrote:
> I have something like this:
>
> Class A:
> def A_Func(self, p_param):
> .
> Class B:
> def A_Func(self):
> .
>
> Class C (A,B):
> A.__init__(self)
> B.__init__(self)
>
> .
>
> self.A_Func() #HERE I GET AN
Hi,
I have something like this:
Class A:
def A_Func(self, p_param):
.
Class B:
def A_Func(self):
.
Class C (A,B):
A.__init__(self)
B.__init__(self)
.
self.A_Func() #HERE I GET AN EXCEPTION "... takes at least 2 arguments