summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authortiagohonorato <61059243+tiagohonorato@users.noreply.github.com>2021-02-19 19:24:07 -0300
committerGitHub <noreply@github.com>2021-02-19 23:24:07 +0100
commitbad6eec57ff001e8af66dfeee14ce250df709124 (patch)
tree0a0edc528e43ec2d2dcc34c72eaba4f48291e147 /doc
parentf9b2227cb036349dda36101d904496e2b54167e8 (diff)
downloadpylint-git-bad6eec57ff001e8af66dfeee14ce250df709124.tar.gz
Fix false positive when zip() receives iterable (#4105)
Since zip() supports iterables, it should not be an issue builtin-not-iterating for iterable arguments. Signed-off-by: Tiago Honorato <tiagohonorato1@gmail.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.7.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/whatsnew/2.7.rst b/doc/whatsnew/2.7.rst
index 1f7bab85a..154e510a5 100644
--- a/doc/whatsnew/2.7.rst
+++ b/doc/whatsnew/2.7.rst
@@ -29,6 +29,8 @@ New checkers
Other Changes
=============
+* Fix false positive for ``builtin-not-iterating`` when ``zip`` receives iterable
+
* Fix linter multiprocessing pool shutdown which triggered warnings when runned in parallels with other pytest plugins.
* Enums are now required to be named in UPPER_CASE by ``invalid-name``.