summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 18:36:05 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 18:36:05 +0300
commit993a174a3b8cf7df95122d3e49a1a07c0966dd9f (patch)
treeec21ec1b576e83c9ca4fab5ef5a4a9867b40ccf5 /ChangeLog
parent9d08797c0f26ad164823c0b45c2f10f41c114482 (diff)
downloadpylint-993a174a3b8cf7df95122d3e49a1a07c0966dd9f.tar.gz
Add a new error, 'invalid-star-assignment-target'.
This error is emitted when a starred expression (*x) is used as the lhs side of an assignment, as in `*x = [1, 2]`. This is not a SyntaxError on Python 3 though.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d259ff1..68571ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -180,6 +180,10 @@ ChangeLog for Pylint
* 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.
+
+ * Add a new error, 'invalid-star-assignment-target', emitted when
+ a starred expression (*x) is used as the lhs side of an assignment,
+ as in `*x = [1, 2]`. This is not a SyntaxError on Python 3 though.