show/hide this revision's text 2 edited body

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(Barsuper(Foo, self).__init__()
        self.baz = 5
show/hide this revision's text 1

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(Bar, self).__init__()
        self.baz = 5