Hello, I want to jump over a method in the class hierarchy, that is: If I have class A(object), clas B(A), class C(B) and in C, I want a method to do exactly what A does but not what B does in its reimplementation, would it be correct to do: super(A, super(B, self)).method() in C ? Thank you. -- Pupeno <[EMAIL PROTECTED]> (http://pupeno.com) -- http://mail.python.org/mailman/listinfo/python-list
- Jumping over in the class hierarchy Pupeno
- Re: Jumping over in the class hierarchy Laszlo Nagy
- Re: Jumping over in the class hierarchy [EMAIL PROTECTED]
- Re: Jumping over in the class hierarchy Jan Niklas Fingerle
- Re: Jumping over in the class hierarchy Raymond Hettinger