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 
(1
given).


I renamed A_Func(self) to fix that ... but is there a cleaner way around ?

Regards,

Philippe





-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to