I'm trying to write a python class which uses a decorator function that needs information of the instance state. This is working as intended, but if I explicitly make the decorator a staticmetod, I get the following error:

Traceback (most recent call last):
  File "tford.py", line 1, in <module>
    class TFord(object):
  File "tford.py", line 14, in TFord
    @ensure_black
TypeError: 'staticmethod' object is not callable

Why?

Here is the code:

class TFord(object):
    def __init__(self, color):
        self.color = color

    @staticmethod
    def ensure_black(func):
        def _aux(self, *args, **kwargs):
            if self.color == 'black':
                return func(*args, **kwargs)
            else:
                return None
        return _aux

    @ensure_black
    def get():
        return 'Here is your shiny new T-Ford'

if __name__ == '__main__':
    ford_red = TFord('red')
    ford_black = TFord('black')

    print ford_red.get()
    print ford_black.get()

And if I just remove the line @staticmethod, everything works, but I do not understand why. Shouldn't it need self as a first argument?

link|improve this question
1  
Why do you think you need a @staticmethod? It seems clear that you don't understand what that means. Static methods are not bound to an instance of an object, so they have no self argument (and no access to instance variables). – Nick Bastin Jun 20 '11 at 13:56
2  
@Nick: The decorator ensure_black doesn't need an access to self. It only needs to access func. – Sven Marnach Jun 20 '11 at 14:00
@Sven: Good point - I was thrown by the face that def get() also wasn't using self, so was confused as to how _aux could be. – Nick Bastin Jun 22 '11 at 3:36
feedback

4 Answers

up vote 8 down vote accepted

This is not how staticmethod is supposed to be used. A staticmethod object uses descriptors to return the wrapped object, so it only works when accessed as classname.staticmethodname. Example

class A(object):
    @staticmethod
    def f():
        pass
print A.f
print A.__dict__["f"]

prints

<function f at 0x8af45dc>
<staticmethod object at 0x8aa6a94>

Inside the scope of A, you would always get the latter object, which is not callable.

I'd strongly recommend to move the dcorator to the module scope -- it does not seem to belong inside the class. If you want to keep it inside the class, don't make it a staticmethod, but rather simply del it at the end of the class body -- it's not meant to be used from outside the class in this case.

link|improve this answer
Ok, it is just that ensure_black has zero uses outside this class. I'm happy to just remove the @staticmethod, I would just like to know why it works. Without that the staticmethod decorator, is ensure_black still a static method? – wkz Jun 20 '11 at 14:09
1  
@wkz: No, it's just a plain Python function defined inside the scope of the class TFord. Functions inside the class scope aren't special in anyway. They will only be treated specially when accessed via an instance like in ford_black.get. This expression won't simply return the function get() as defined inside the class scope but rather a "bound method wrapper" that makes sure the correct instance is passed as self parameter when the function is called -- see the above link and the example. The example circumvents the special treatment by using A.__dict__["f"]. – Sven Marnach Jun 20 '11 at 14:14
marnach: Thank you! That was the answer I was looking for! – wkz Jun 20 '11 at 14:19
@SvenMarnach I was doing exactly what OP was doing, so your answers very helpful, thank you. – haridsv Nov 25 '11 at 1:07
feedback

ensure_black is returning a _aux method that isn't decorated by @staticmethod

You can return a non-static method to a static_method

http://docs.python.org/library/functions.html#staticmethod

link|improve this answer
1  
No, that has nothing to do with it. – Cat Plus Plus Jun 20 '11 at 13:56
of course it has.. if he is using @staticmethod self is not available in his method context.. (although his code do not work because of that) – Felipe Cruz Jun 20 '11 at 14:14
feedback

A static method is nothing but a way of hiding a function in a scope of a single class.

Why use @staticmethod?

In python, you always have to pass the first argument of every method as "self", aka "this" in C++ and derivatives.

In fact, this code would perfectly work:

>>> class C(object):
...     def f(this):
...         print(this)
... 
>>> c = C()
>>> c.f()
<__main__.C object at 0x7f9e536f0510>

But "self" keyword is the standard.

So, with staticmethod:

>>> class C(object):
...     @staticmethod
...     def f():
...         print 'In static method'
... 
>>> C.f()
In static method
>>> 
link|improve this answer
But if that is the case, how come my code works if I remove the @staticmethod line? Shouldn't my func-argument become the self-reference? That does not seem to be the case since calling func yields the expected result. – wkz Jun 20 '11 at 14:14
In you case, just define the decorator outside of the class. So, that the decorator would just be a function. – BasicWolf Jun 20 '11 at 14:16
feedback

Python classes are created at runtime, after evaluating the contents of the class declaration. The class is evaluated by assigned all declared variables and functions to a special dictionary and using that dictionary to call type.__new__ (see customizing class creation).

So,

class A(B):
    c = 1

is equivalent to:

A = type.__new__("A", (B,), {"c": 1})

When you annotate a method with @staticmethod, there is some special magic that happens AFTER the class is created with type.__new__. Inside class declaration scope, the @staticmethod function is just an instance of a staticmethod object, which you can't call. The decorator probably should just be declared above the class definition in the same module OR in a separate "decorate" module (depends on how many decorators you have). In general decorators should be declared outside of a class. One notable exception is the property class (see properties). In your case having the decorator inside a class declaration might make sense if you had something like a color class:

class Color(object):

    def ___init__(self, color):
        self.color = color

     def ensure_same_color(f):
         ...

black = Color("black")

class TFord(object):
    def __init__(self, color):
        self.color = color

    @black.ensure_same_color
    def get():
        return 'Here is your shiny new T-Ford'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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