summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2022-02-17 10:27:29 -0500
committerGitHub <noreply@github.com>2022-02-17 16:27:29 +0100
commit67055f4221324a5aba057c0e7e3a5ffdc41a7e35 (patch)
treefa072e8540cea978e76a5c8018bc71e4203223f1 /ChangeLog
parent8c0062f5ac0cfd80a74568e36d1e68e5a128c7f5 (diff)
downloadpylint-git-67055f4221324a5aba057c0e7e3a5ffdc41a7e35.tar.gz
Fix `used-before-assignment` false positive for except handler names shared by comprehension test (#5818)
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e27ef4cb2..b42d81a8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -287,6 +287,11 @@ Release date: TBA
Closes #4716
+* Fix false positive for ``used-before-assignment`` when an except handler
+ shares a name with a test in a filtered comprehension.
+
+ Closes #5817
+
* Fix crash in ``unnecessary-dict-index-lookup`` checker if the output of
``items()`` is assigned to a 1-tuple.