Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

generator op #11

Closed
majidaldo opened this issue Jun 24, 2021 · 0 comments · Fixed by #12
Closed

generator op #11

majidaldo opened this issue Jun 24, 2021 · 0 comments · Fixed by #12
Assignees
Labels
bug Something isn't working

Comments

@majidaldo
Copy link

Is this expected behavior?

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
@brandonwillard brandonwillard added the bug Something isn't working label Jun 25, 2021
@brandonwillard brandonwillard self-assigned this Jun 25, 2021
@brandonwillard brandonwillard linked a pull request Jun 25, 2021 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants