summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhippo91 <guillaume.peillex@gmail.com>2018-01-04 17:33:19 +0100
committerhippo91 <guillaume.peillex@gmail.com>2018-01-04 17:33:19 +0100
commitfd336bab277e795da15379c582f3f33f541e160a (patch)
treee6f3e86ead04eeedb86a2b184a542d26358e8c62
parent1f46bffe6a4acdaac2107b2a3f8215d8913baee2 (diff)
downloadpylint-git-fd336bab277e795da15379c582f3f33f541e160a.tar.gz
Add of ChangeLog and whatsnew entries
-rw-r--r--ChangeLog5
-rw-r--r--doc/whatsnew/1.8.rst3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index fb6b3e258..7dfabcbd9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,6 +29,11 @@ Release data: |TBA|
Close #1772
+ * Fix ``unused-argument`` false positives with overshadowed variable in
+ dictionary comprehension.
+
+ Close #1731
+
What's New in Pylint 1.8.1?
===========================
diff --git a/doc/whatsnew/1.8.rst b/doc/whatsnew/1.8.rst
index 5690ed5c4..4ec35b804 100644
--- a/doc/whatsnew/1.8.rst
+++ b/doc/whatsnew/1.8.rst
@@ -372,3 +372,6 @@ Other Changes
(backport from 2.0)
* Fix a false positive inconsistent-return-statements message when while loop are used. (backport from 2.0)
+
+* Fix unused-argument false positives with overshadowed variable in dictionary comprehension.
+ (backport from 2.0)