summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-11-26 15:35:03 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-11-26 15:35:03 +0200
commite3aa096710619f7b4647b9656649f90b29fe6eba (patch)
tree171f7a8a9d2113786bf200f14a65ba136daf3f05 /ChangeLog
parent0b4bcb2a8b3d2aa1c90b7369f727532237e153c5 (diff)
downloadpylint-e3aa096710619f7b4647b9656649f90b29fe6eba.tar.gz
Added a new warning, 'unsupported-assignment-operation'
This is emitted when item assignment is tried on an object which doesn't have this ability. Closes issue #591.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2436dcc..f36f175 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@ ChangeLog for Pylint
--------------------
--
+ * Added a new warning, 'unsupported-assignment-operation', which is
+ emitted when item assignment is tried on an object which doesn't
+ have this ability. Closes issue #591.
+
* Added multiple warnings related to imports. 'wrong-import-order'
is emitted when PEP 8 recommendations regarding imports are not
respected (that is, standard imports should be followed by third-party