Is there a way to see what the application of a Python decorator has done with a function to which I have applied it. For example if I have
class A(object):
@property
def something(self):
return 0
I'd like to see what the code that's executed for something
actually looks like. Is there a way to do this?
A decorator doesn't produce code; a decorator is really only syntactic sugar:
is really interpreted as:
e.g. the expression following the
@
sign is evaluated, and the result is called, passing in the function or class following the@
line. Whatever the decorator then returns replaces the original object.For introspection purposes, the
@
line is not retained; you'd have to parse the source code itself to discover any decorators present. A decorator is not obliged to return a new object; you can return the original object unaltered and you cannot, with introspection, know the difference.Your best bet is to return to the source of the decorator then and just read the code. The
property
decorator is implemented in C, but the descriptor howto contains a Python implementation that does the same thing: