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

audit list comprehensions for potential replacement by generator expression #43

Open
klindsay28 opened this issue Jun 24, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@klindsay28
Copy link
Owner

From deepsource.io:

Builtin functions like all, any, enumerate, frozenset, iter, max, min, sum, tuple, itertools.cycle, itertools.accumulate, can work directly with a generator expression. They do not require comprehension.

The inbuilt functions all() and any() in python also support short-circuiting, but this behavior is lost if you use comprehension. This affects performance.

Audit all list comprehensions to see if they can be replaced with generator expressions.

@klindsay28 klindsay28 added the enhancement New feature or request label Jun 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant