I would like to create an instance method based on a function, as a parameter to instance initialization, as follows:
from traits.api import *
class C(HasTraits):
f = Function
c = C(f=lambda self: self)
However, if I run
c.f()
it says (not in any way surprisingly)
TypeError: <lambda>() takes exactly 1 argument (0 given)
Changing f from Function to Method does not help as it does not accept the function argument (requires instancemethod).
So my question is, how I could get custom function act as instance method (with self parameter as ordinary instance methods) when using Traits?
Define new Trait type MyMethod as follows:
and use it instead of Function or Method in the previous code, and functions will be converted to instancemethods automatically.