summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-08-31 12:27:19 +0200
committerGitHub <noreply@github.com>2021-08-31 12:27:19 +0200
commite1da3c03d2b91f56b0977480856c2a2a6501758a (patch)
treeee0f709ac536d71923c3119e9c5cfdb1db1a0c3a /ChangeLog
parent8b778cd5d5a6220b6fc1d6a80e30066ebcabd43e (diff)
downloadpylint-git-e1da3c03d2b91f56b0977480856c2a2a6501758a.tar.gz
Fix false positive ``protected-access`` in typing (#4937)
* Fix false positive ``protected-access`` in typing Class functions can return protected members which can then be passed as arguments to other functions. When using type hints in function definitions these raised a message which they shouldn't do.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c0d6cb3a7..043639dc5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -43,6 +43,8 @@ Release date: TBA
Closes #4936
+* Fix false positive for ``protected-access`` if a protected member is used in type hints of function definitions
+
What's New in Pylint 2.10.3?
============================