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

Consider the following code:

class Base(object):

    @classmethod
    def do(cls, a):
        print cls, a

class Derived(Base):

    @classmethod
    def do(cls, a):
        print 'In derived!'
        # Base.do(cls, a) -- can't pass `cls`
        Base.do(a)

if __name__ == '__main__':
    d = Derived()
    d.do('hello')

> $ python play.py  
> In derived! 
> <class '__main__.Base'> msg

From Derived.do, how do I call Base.do? I would normally use super or even the base class name directly if this is a normal object method, but apparently I can't find a way to call the classmethod in the base class. In the above example, Base.do(a) prints Base class instead of Derived class.

share|improve this question

3 Answers

up vote 24 down vote accepted
super(Derived, cls).do(a)

EDIT: Oh, wait a minute... it's not clear exactly what you're asking. This is how you would invoke the code in the base class's version of the method, from the derived class.

share|improve this answer
2  
uh uh .. how come it never occured to me that I can use super on classmethods too. – Sridhar Ratnakumar Aug 12 '09 at 23:11

this has been a while, but I think I may have found an answer. When you decorate a method to become a classmethod the original unbound method is stored in a property named 'im_func':

class Base(object):
    @classmethod
    def do(cls, a):
        print cls, a

class Derived(Base):

    @classmethod
    def do(cls, a):
        print 'In derived!'
        # Base.do(cls, a) -- can't pass `cls`
        Base.do.im_func(cls, a)

if __name__ == '__main__':
    d = Derived()
    d.do('hello')
share|improve this answer
1  
Note: This approach works for old style classes where super() doesn't work – Alex Q Jun 2 '11 at 20:36

This works for me:

Base.do('hi')
share|improve this answer
4  
The cls argument will then be bound to Base instead of Derived – Sridhar Ratnakumar Aug 12 '09 at 23:14
what works for me is this - which looks (a lot) like Ned's answer: where self derives from QGraphicsView which has paintEvent(QPaintEvent) def paintEvent (self, qpntEvent): print dir(self) QGraphicsView.paintEvent(self, qpntEvent) – user192127 Mar 31 '12 at 15:54

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.