vote up 3 vote down star
1

Stackers,

I apologize for this question in advance. It must be a FAQ, but I don't seem to be able to find the answer.

When creating a simple object hierarchy in python, I'd like to be able to invoke methods of the parent class from a derived class. In Perl and Java, there is a keyword for this (super). In Perl, I might do this:

package Foo;

sub frotz() {
    return "Bamf";
}

package Bar;
@ISA = qw(Foo);

sub frotz() {
   my $str = SUPER::frotz();
   return uc($str);
}

In python, it appears that I have to name the parent class explicitly from the child. In the example above, I'd have to do something like Foo::frotz().

This doesn't seem right, since this behavior makes it hard to make deep hierarchies. If children need to know what class defined an inherited method, then all sorts of information pain is created.

Is this an actual limitation in python, a gap in my understanding or both?

Thanks,

--Joe

flag
I think the naming of the parent class isn't such a bad idea. It can help when the child class inherits from more than one parent, since you explicitly name the parent class. – Chris Cameron Apr 30 at 2:12

4 Answers

vote up 12 vote down check

Yes, but only with new-style classes. Use the super() function:

class Foo(Bar):
    def baz(self, arg):
        return super(Foo, self).baz(arg)
link|flag
Can you not also do "return Bar.baz(self, arg)"? If so, which would be better? – Chris Cameron Apr 30 at 2:09
Yes, you can, but the OP was asking how to do it without explicitly naming the superclass at the call site (Bar, in this case). – Adam Rosenfield Apr 30 at 2:13
-1: forgot to mention class Foo( object ): is essential for making this work. – S.Lott Apr 30 at 2:37
2  
Well, Adam does note it's restricted to "new-style classes", which is a link that has as its first line, "Any class which inherits from object." – John Fouhy Apr 30 at 2:51
1  
super() is weird with multiple inheritance. It calls to the "next" class. That might be the parent class, or might be some completely unrelated class which appears elsewhere in the hierarchy. – onebyone May 1 at 15:41
show 2 more comments
vote up 2 vote down

Python also has super as well:

super(type[, object-or-type])

Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for accessing inherited methods that have been overridden in a class. The search order is same as that used by getattr() except that the type itself is skipped.

Example:

class A(object):
    def foo(self):
        print "foo"

class B(A):
    def foo(self):
        super(B, self).foo()

myB = B()
myB.foo()
link|flag
vote up 1 vote down

ImmediateParentClass.frotz(self) will be just fine, whether the immediate parent class defined frotz itself or inherited it. super is only needed for proper support of multiple inheritance (and then it only works if every class uses it properly). In general, AnyClass.whatever is going to look up 'whatever' in AnyClass's ancestors if AnyClass doesn't define/override it, and this holds true for "child class calling parent's method" as for any other occurrence!

link|flag
vote up 0 vote down

There's a super() in Python too. It's a bit wonky, because of Python's old- and new-style classes, but is quite commonly used e.g. in constructors:

class Foo(Bar):
    def __init__(self):
        super(Foo, self).__init__()
        self.baz = 5
link|flag
I think you mean: 'super(Foo, self).__init__()' – John Fouhy Apr 30 at 2:53
oops... indeed i did – lawrence Apr 30 at 3:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.