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
If there is in the same expression a call to a function with a body and any EvaluableExpression (which gets stored in extra, eg periodic globals, __getitem__ or attribute access), it breaks, because it first evaluates the EvalableExpression, stores it in .extra then calls the function, which wipes .extra and then by the time we try go evaluate the "larger" expression, we can't find the variable storing the EvaluableExpression result.
If there is in the same expression a call to a function with a body and any EvaluableExpression (which gets stored in extra, eg periodic globals,
__getitem__
or attribute access), it breaks, because it first evaluates the EvalableExpression, stores it in .extra then calls the function, which wipes .extra and then by the time we try go evaluate the "larger" expression, we can't find the variable storing the EvaluableExpression result.The text was updated successfully, but these errors were encountered: