We would like to generalize the MethodTracer to be able to:
take a specific list of methods to trace (right now, the list contains builtin operators only) along with their signatures
specify "how to trace", that is, what method factory to use when making the class. Namely, to be able to handle **kwargs as well, possibly trace, but also return the result of the operation, etc.
We won't do this yet, but want to at least set up the tools to do so. Namely, add arguments to the trace_class_decorator.
We would like to generalize the
MethodTracer
to be able to:We won't do this yet, but want to at least set up the tools to do so. Namely, add arguments to the
trace_class_decorator
.