summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 18:25:32 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 18:25:32 +0300
commit9d08797c0f26ad164823c0b45c2f10f41c114482 (patch)
tree67649b5fbb554152fc3ba4e149db5ef9441d4657 /ChangeLog
parent04f1ffd196a579e9af4acc277d49aff4f33be9f1 (diff)
downloadpylint-9d08797c0f26ad164823c0b45c2f10f41c114482.tar.gz
Add a new error, 'too-many-star-expressions'.
The error is emitted when there are more than one starred expression (*x) in an assignment. The warning is emitted only on Python 3.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ca0d9fe..d259ff1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -176,6 +176,10 @@ ChangeLog for Pylint
inferred (YES nodes).
* yield-outside-func is also emitted for `yield from`.
+
+ * Add a new error, 'too-many-star-expressions', emitted when
+ there are more than one starred expression (*x) in an assignment.
+ The warning is emitted only on Python 3.