I've only seen examples for setting the __repr__
method in class definitions. Is it possible to change the __repr__
for functions either in their definitions or after defining them?
I've attempted without success...
>>> def f():
pass
>>> f
<function f at 0x1026730c8>
>>> f.__repr__ = lambda: '<New repr>'
>>> f
<function __main__.f>
Yes, if you're willing to forgo the function actually being a function.
First, define a class for our new type:
Add in a decorator function:
And now we can define the repr along with the function:
Now
repr(mul42)
produces'<Func: mul42>'