diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-11-15 10:22:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 09:22:19 +0100 |
commit | cff6d39b0ce57299d51f2321c0b6e6e761d9feeb (patch) | |
tree | 59b65d8b4d43671d5758566da9305d861925403f /ChangeLog | |
parent | 48d584babd0df99bd469aba0e4aeed3d8f97fff9 (diff) | |
download | pylint-git-cff6d39b0ce57299d51f2321c0b6e6e761d9feeb.tar.gz |
Fix crash for ``protected-access`` on (outer)-class traversal (#5305)
* Fix crash for ``protected-access`` on (outer)-class traversal
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -175,6 +175,8 @@ Release date: TBA Follow-up in #5259 +* Fix crash for ``protected-access`` on (outer) class traversal + * Added new checker ``useless-with-lock`` to find incorrect usage of with statement and threading module locks. Emitted when ``with threading.Lock():`` is used instead of ``with lock_instance:``. |