Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to understand super(). From the looks of it, both child classes can be created just fine. Im curious as to what difference there actually is in this code:

class Base(object):
    def __init__(self):
        print "Base created"

class ChildA(Base):
    def __init__(self):
        Base.__init__(self)

class ChildB(Base):
    def __init__(self):
        super(ChildB, self).__init__()

print ChildA(),ChildB()
share|improve this question
69  
Where possible, please use UpperCase Names for Classes. It's easier for other Python folks to read. – S.Lott Feb 23 '09 at 0:39
4  
This post might be helpful to you as well: stackoverflow.com/questions/222877/how-to-use-super – bernie Feb 23 '09 at 0:45
6  
Ouch, reading that article made me want to stay far, far away from super(). – mizipzor Feb 23 '09 at 0:54
110  
So many votes on the request of major camel case class names yet no one has edited my question? This is StackOverflow people, edit away! – mizipzor Nov 4 '10 at 22:36

4 Answers

up vote 256 down vote accepted

Super lets you avoid referring to the base class explicitly, which can be nice. But the main advantage comes with multiple inheritance, where all sorts of fun stuff can happen. See the standard docs on super if you haven't already.

Edit: Note that the syntax changed in Python 3.0: you can just say super().__init__() instead of super(ChildB, self).__init__() which IMO is quite a bit nicer.

share|improve this answer
16  
I agree. It means that not only do you not have to mention the parent class's name, but you don't have to mention the current class's name. – Devin Jeanpierre Feb 23 '09 at 1:06
10  
The new syntax is more clean than the previous one. It looks more like Java now. – Tarik Nov 15 '11 at 18:46
14  
@Braveyard I can't tell if you're serious or a comedic genius. – Devin Jeanpierre Apr 17 '12 at 6:27
4  
Some more interesting things that can be done via super are well described by Raymond Hettinger in a blog post – Rodrigue May 25 '12 at 9:28

There isn't, really. super() looks at the next class in the MRO (method resolution order, accessed with cls.__mro__) to call the methods. Just calling the base __init__ calls the base __init__. As it happens, the MRO has exactly one item-- the base. So you're really doing the exact same thing, but in a nicer way with super() (particularly if you get into multiple inheritance later).

share|improve this answer
I see. Could you elaborate a little as to why its nicer to use super() with multiple inheritance? To me, the base.__init__(self) is shorter (cleaner). If I had two baseclasses, it would be two of those lines, or two super() lines. Or did I misunderstand what you meant by "nicer"? – mizipzor Feb 23 '09 at 0:40
3  
Actually, it would be one super() line. When you have multiple inheritance, the MRO is still flat. So the first super().__init__ call calls the next class's init, which then calls the next, and so on. You should really check out some docs on it. – Devin Jeanpierre Feb 23 '09 at 0:45
The child class MRO contains object too - a class's MRO is visible in the mro class variable. – James Brady Feb 23 '09 at 1:24
Also note that classic classes (pre 2.2) don't support super - you have to explicitly refer to base classes. – James Brady Feb 23 '09 at 1:26
"The child class MRO contains object too - a class's MRO is visible in the mro class variable." That is a big oops. Whoops. – Devin Jeanpierre Feb 23 '09 at 4:14

Just a heads up... with Python 2.7, and I believe ever since super() was introduced in version 2.2, you can only call super() if one of the parents inherit from a class that eventually inherits object (new-style classes).

Personally, as for python 2.7 code, I'm going to continue using BaseClassName.__init__(self, args) until I actually get the advantage of using super().

share|improve this answer

Super has no side effects

Base = ChildB

Base()

works as expected

Base = ChildA

Base()

gets into infinite recursion.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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