summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorAndrew Simmons <a.simmons@deakin.edu.au>2020-04-21 05:38:37 +1000
committerClaudiu Popa <pcmanticore@gmail.com>2020-04-22 08:26:43 +0200
commit0ea3410d670246cb8b961e99ec474f7f7b95f4ce (patch)
treea0be52b84ff0eb2f52a3ad4646246f70f08fa046 /ChangeLog
parentaa1940e35a8c78cc362f112b6bf498f97ee6640d (diff)
downloadpylint-git-0ea3410d670246cb8b961e99ec474f7f7b95f4ce.tar.gz
Fix false negative for undefined-variable when using class attribute in comprehension (#3494)
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index eb1e768e9..3ed3e66da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,10 @@ What's New in Pylint 2.5.0?
Release date: TBA
+* Fix a false negative for ``undefined-variable`` when using class attribute in comprehension.
+
+ Close #3494
+
* Fix a false positive for ``undefined-variable`` when using class attribute in decorator or as type hint.
Close #511