The tracer does not pick up mathematical operators, like + and *, because they are not reported by sys.settrace or sys.setprofile. Closely related to #10.
Once #13 is implemented, this issue can be fixed by rewriting UnaryOp and BinOp AST nodes as calls to the corresponding functions in the operator module. Likewise for attribute getters and setters and indexing.
The tracer does not pick up mathematical operators, like
+
and*
, because they are not reported bysys.settrace
orsys.setprofile
. Closely related to #10.