I know C++ and Java and I am unfamiliar with Pythonic programming. So maybe it is bad style what I am trying to do.

Consider fallowing example:

class foo:
        def a():
                __class__.b() # gives: this is foo
                bar.b() # gives: this is bar
                foo.b() # gives: this is foo
                # b() I'd like to get "this is bar" automatically

        def b():
                print("this is foo")

class bar( foo ):
        def b( ):
                print("this is bar")

bar.a()

Notice, that I am not using self parameters as I am not trying to make instances of classes, as there is no need for my task. I am just trying to refer to a function in a way that the function could be overridden.

link|improve this question
FYI, when you use __class__ like that in a Python 3.x method, it actually hard codes a closure into the function object. Take a look at foo.a.__code__.co_freevars and foo.a.__closure__[0].cell_contents. – eryksun Aug 9 '11 at 12:30
feedback

2 Answers

up vote 5 down vote accepted

What you want is for a to be a classmethod.

class Foo(object):
    @classmethod
    def a(cls):
        Foo.b() # gives: this is foo
        Bar.b() # gives: this is bar
        cls.b() # gives: this is bar
    @staticmethod
    def b():
        print("this is foo")

class Bar(Foo):
    @staticmethod
    def b():
        print("this is bar")

Bar.a()

I've edited your style to match the Python coding style. Use 4 spaces as your indent. Don't put extra spaces in between parenthesis. Capitalize & CamelCase class names.

A staticmethod is a method on a class that doesn't take any arguments and doesn't act on attributes of the class. A classmethod is a method on a class that gets the class automatically as an attribute.

Your use of inheritance was fine.

link|improve this answer
Thanks! Your answer had also some info I didn't know to ask. Now I know, this question also gives some useful info about these decorators. – Johu Aug 9 '11 at 10:17
I'd suggest you read about them on the built in functions page of the docs as well, docs.python.org/library/functions.html#classmethod – agf Aug 9 '11 at 10:19
feedback

Quote from the Execution Model:

The scope of names defined in a class block is limited to the class block; it does not extend to the code blocks of methods – this includes generator expressions since they are implemented using a function scope.

This mean that there is no name b in the scope of function a. You should refer to it via class or instance object.

link|improve this answer
He didn't know how to do that while still allowing it to be overridden - that was his question. – agf Aug 9 '11 at 9:54
@agf I believe he want to know why it is happening. – Roman Bodnarchuk Aug 9 '11 at 9:57
feedback

Your Answer

 
or
required, but never shown

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