summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-11-26 17:18:16 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-11-26 17:18:16 +0200
commit0c7dc2248c66da8d8884985ec5d96f2d243b1849 (patch)
treec147f8d0cc1690bfd777fd4044d946173bbc07a2 /ChangeLog
parente3aa096710619f7b4647b9656649f90b29fe6eba (diff)
downloadpylint-0c7dc2248c66da8d8884985ec5d96f2d243b1849.tar.gz
Added a new warning, 'unsupported-delete-operation'
It is emitted when item deletion is tried on an object which doesn't have this ability. Closes issue #592.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f36f175..e53e79c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,10 @@ ChangeLog for Pylint
emitted when item assignment is tried on an object which doesn't
have this ability. Closes issue #591.
+ * Added a new warning, 'unsupported-delete-operation', which is
+ emitted when item deletion is tried on an object which doesn't
+ have this ability. Closes issue #592.
+
* 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