diff options
author | Ikraduya Edian <ikraduya@gmail.com> | 2021-02-20 21:50:19 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 15:50:19 +0100 |
commit | 45c824549f9a7fa38df04ae8648d1647c82ba9b4 (patch) | |
tree | c6d05e8979245ddb0c5ed84437ac8219616858bb /doc | |
parent | 570e65536147b00ab8a5743e761d7caa326afa21 (diff) | |
download | pylint-git-45c824549f9a7fa38df04ae8648d1647c82ba9b4.tar.gz |
Add new `consider-using-generator` and 'use-a-generator' checkers
See issue #3165 (#3309)
See https://github.com/PyCQA/pylint/pull/3309#discussion_r576683109
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Co-authored-by: Daniel Hahler <github@thequod.de>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/whatsnew/2.7.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/whatsnew/2.7.rst b/doc/whatsnew/2.7.rst index 7b0fd859f..520c68cd5 100644 --- a/doc/whatsnew/2.7.rst +++ b/doc/whatsnew/2.7.rst @@ -26,6 +26,8 @@ New checkers * Add `condition-evals-to-constant` check for conditionals using and/or that evaluate to a constant. +* Add `consider-using-generator` check for the use of list comprehension inside ``any`` or ``all`` function. + Other Changes ============= |