On Apr 5, 3:19 pm, Martin Manns <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a class structure as follows and I would like to invoke the
> method A.m() from D.m
>
> class A(object):
>         def m(self):
> class B(A):
>         def m(self):
> class C(A):
>         def m(self):
> class D(B,C):
>         def m(self):
>                 # Call A.m with super?
>
> I have readhttp://www.python.org/download/releases/2.2/descrintro/but
> I am still stuck.
>
> Thanks in advance
>
> Martin

I'm not sure if this is what you want, but it's my best guess:

class A(object):
        def m(self):
            print "I'm the original"
class B(A):
        def m(self):
            print 'B class here'
class C(A):
        def m(self):
            print 'C class here'
class D(B,C):
        def m(self):
                x = A()
                x.m()

temp = D()
temp.m()



Mike

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

Reply via email to