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
In [60]: etuple(lambda xs: list(x+1 for x in xs), (range(5)) ).eval_obj
Out[60]: [1, 2, 3, 4, 5]
In [61]: etuple(lambda xs: (x+1 for x in xs), (range(5)) ).eval_obj
Out[61]: 5
The text was updated successfully, but these errors were encountered:
Is this expected behavior?
The text was updated successfully, but these errors were encountered: