summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDmitry Pribysh <dmand@yandex.ru>2015-11-03 17:37:20 +0300
committerDmitry Pribysh <dmand@yandex.ru>2015-11-03 17:37:20 +0300
commitf93a5c6dba7014e11ab0300a40eef321dca3bb5a (patch)
tree36aa81c7df16dbf394cc9e62da3697542318583a /ChangeLog
parent9ec0cfac7937cdf56519f033c074e8f6b4cf1ccf (diff)
downloadpylint-f93a5c6dba7014e11ab0300a40eef321dca3bb5a.tar.gz
Add checker for unsubscriptable values used in subscript expression.
Fixes issue #561.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 948520c..2ee9c15 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,10 @@ ChangeLog for Pylint
--
+ * Add new message, 'unsubscriptable-value', that is emitted when
+ value used in subscription expression doesn't support subscription
+ (i.e. doesn't define __getitem__ method).
+
* Don't warn about abstract classes instantiated in their own
body. Closes issue #627.