You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deffn(x() + y(), x, y)(0) should evaluate to deffn(0 + y(), y) or raise an error, because this is consistent with Python's behavior for callables. It currently evaluates to 0 + y().
deffn(x() + y(), x, y)(0)shouldevaluate toraise an error, because this is consistent with Python's behavior for callables. It currently evaluates todeffn(0 + y(), y)or0 + y().