summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorTorsten Marek <tmarek@google.com>2012-03-15 13:48:25 +0100
committerTorsten Marek <tmarek@google.com>2012-03-15 13:48:25 +0100
commit442d90383827cc06061124c2942c540d3588eae1 (patch)
treedf8a189356d2bad4cddaae194cb31e7e62320651 /ChangeLog
parentf6ad8e26b9586d280d42581b721ce2d3e9124b1e (diff)
downloadpylint-git-442d90383827cc06061124c2942c540d3588eae1.tar.gz
Fix the variables check to not emit false positives for E0602 on {list,generator} comprehension loop variables inside decorators.
Closes #77982
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ebe87919..b75206f81 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@ ChangeLog for PyLint
--
+ * #77982 Do not emit E0602 for loop variables of comprehensions
+ used as argument values inside a decorator (patch by tmarek@google.com)
+
* #87192 fix crash when decorators are accessed through more than one dot
(for instance @a.b is fine, @a.b.c crash)
* #89092: don't emit E0202 (attribute hiding a method) on @property methods