vote up 4 vote down star

When using Python's super() to do method chaining, you have to explicitly specify your own class, for example:


    class MyDecorator(Decorator):
        def decorate(self):
            super(MyDecorator, self).decorate()

I have to specify the name of my class MyDecorator as an argument to super(). This is not DRY. When I rename my class now I will have to rename it twice. Why is this implemented this way? And is there a way to weasel out of having to write the name of the class twice(or more)?

flag

67% accept rate

3 Answers

vote up 4 vote down check

The BDFL agrees. See Pep 367 - New Super for 2.6 and PEP 3135 - New Super for 3.0.

link|flag
Link to the current version of the PEP: python.org/dev/peps/pep-3135 – sth Jan 21 at 19:50
super() without arguments does not work on Python 2.6.1 – J.F. Sebastian Jan 21 at 20:53
vote up 4 vote down

Your wishes come true:

Just use python 3.0. In it you just use super() and it does super(ThisClass, self).

Documentation here. Code sample from the documentation:

class C(B):
    def method(self, arg):
        super().method(arg)    
        # This does the same thing as: super(C, self).method(arg)
link|flag
vote up 0 vote down

you can also avoid writing a concrete class name in older versions of python by using

def __init__(self):
    super(self.__class__, self)
    ...
link|flag
No, that won't work because class will give you the most specific subclass for the instance, not necessarily the one in the context of the class we are writing. – toby Jan 21 at 21:59
I feel it's unfair to the author to down-vote this answer. This answer makes a naive but common misconception. It deserves stating here, along with toby's explanation of why this fails to work. There's worth in reporting methods which DON'T work, too. – gotgenes Jan 22 at 4:58

Your Answer

Get an OpenID
or

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