summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-10-31 05:55:46 +0100
committerGitHub <noreply@github.com>2021-10-31 05:55:46 +0100
commitdb5d77c2849e1ee20adef401d1b56c19e1c0fb55 (patch)
tree8500b065a94fe7ce92bea4fdcab1db5bc779742e /doc
parent1d3a7ff32b0f6d819b17ce18345502fbc47b48c9 (diff)
downloadpylint-git-db5d77c2849e1ee20adef401d1b56c19e1c0fb55.tar.gz
Fix ``protected-access`` for attributes and methods of nested classes (#5232)
* Fix access to private function in inner class on protected-access bug * Add functional test for protected-access from inner class * Add Ikraduya to CONTRIBUTORS file * Add if statement to avoid potential bug * Fix ``protected-access`` for attributes and methods of nested classes This closes #3066 Co-authored-by: ikraduya <ikraduya@gmail.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.12.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/whatsnew/2.12.rst b/doc/whatsnew/2.12.rst
index 627a5eb07..98008e109 100644
--- a/doc/whatsnew/2.12.rst
+++ b/doc/whatsnew/2.12.rst
@@ -78,6 +78,10 @@ Other Changes
``use-implicit-booleaness-not-len`` in order to be consistent with
``use-implicit-booleaness-not-comparison``.
+* Fixed ``protected-access`` for accessing of attributes and methods of inner classes
+
+ Closes #3066
+
* Update ``literal-comparison``` checker to ignore tuple literals
Closes #3031