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
When assigning to multiple elements instead of choosing one or the other part or both all parts of the assignment is ignored and instead nothing is output.
To Reproduce:
a,b = c,d = 3,4
The text was updated successfully, but these errors were encountered:
I think there is a question about what should happen here. In ipykernel in last_expr_or_assignast_node_interactivity mode, no output is shown for a statement like b = c = 12. For us, showing no output seems incorrect. We could show just b or both b and c as outputs, but what would be the point of the second option? I would argue that having just b or in the case of the example above, a and b, would be the correct outputs.
When assigning to multiple elements instead of choosing one or the other part or both all parts of the assignment is ignored and instead nothing is output.
To Reproduce:
The text was updated successfully, but these errors were encountered: