python-decorators

@staticmethod and @classmethod

@staticmethod and @classmethod are built-in to the interpreter as they do not have implementations in Python code. They are also the first decorators for the language, introduced in 2.2, even before the decorator syntax was finalized.

When used, they have to be the outermost (top) decorator, because they turn methods into special staticmethod and classmethod objects.

Prev / Up / Next