summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-10-09 00:35:34 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-10-09 00:35:34 +0300
commit86b7ed8432640c34c8bec27bf739056e25507024 (patch)
tree592deb689e17e177ef218d335045714d06ae7768 /ChangeLog
parentbb6863c2aae937fa97f98fa927dd27148f952e40 (diff)
downloadpylint-86b7ed8432640c34c8bec27bf739056e25507024.tar.gz
Add a new error, 'repeated-keyword', when a keyword argument is passed multiple times into a function call.
This is similar with redundant-keyword-arg, but it's mildly different that it needs to be a separate error. This change also uses a CallSite for understanding the arguments that were passed into a function call, since with this we can make sense about multiple starred arguments passed into (PEP 448).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e1e71c0..8d227a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -327,6 +327,12 @@ ChangeLog for Pylint
* Don't emit 'assigning-non-slot' for descriptors. Closes issue #652.
+ * Add a new error, 'repeated-keyword', when a keyword argument is passed
+ multiple times into a function call.
+
+ This is similar with redundant-keyword-arg, but it's mildly different
+ that it needs to be a separate error.
+
2015-03-14 -- 1.4.3