summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-03-12 17:52:29 +0100
committerGitHub <noreply@github.com>2022-03-12 17:52:29 +0100
commitae3853648ac012467c0c99e9388ffa008fc014af (patch)
tree41eb7c9de07b8c0cdf7c79620d5638269240b558 /doc
parent72193ab970705e532ecaffe91c1810bbc1745de9 (diff)
downloadpylint-git-ae3853648ac012467c0c99e9388ffa008fc014af.tar.gz
Add tests for #4826 (#5696)
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.13.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/whatsnew/2.13.rst b/doc/whatsnew/2.13.rst
index 22defda5d..a3d10a929 100644
--- a/doc/whatsnew/2.13.rst
+++ b/doc/whatsnew/2.13.rst
@@ -106,6 +106,12 @@ Extensions
Other Changes
=============
+* No longer emit ``no-member`` in for loops that reference ``self`` if the binary operation that
+ started the for loop uses a ``self`` that is encapsulated in tuples or lists.
+
+ Ref PyCQA/astroid#1360
+ Closes #4826
+
* Fix matching ``--notes`` options that end in a non-word character.
Closes #5840