J'essaie d'écrire une classe python qui utilise une fonction de décorateur qui a besoin d'informations sur l'état de l'instance. Cela fonctionne comme prévu, mais si je fais explicitement du décorateur un staticmetod, j'obtiens l'erreur suivante:
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
Pourquoi?
Voici le 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()
Et si je supprime simplement la ligne @staticmethod
, tout fonctionne, mais je ne comprends pas pourquoi. Ne devrait-il pas avoir besoin de self
comme premier argument?