Closed acfoltzer closed 9 years ago
Instead of:
m.eval("%s + %s" % (m.to_expr(x), m.to_expr(y)))
We should make eval and similar calls into varargs methods with automatic to_expr calls around the splices:
eval
to_expr
m.eval("? + ?", x, y)
Instead of:
We should make
eval
and similar calls into varargs methods with automaticto_expr
calls around the splices: