summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-13 19:24:32 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-13 19:24:32 +0300
commitdbe36b27eb863a58693ad04f0d28b9767a8bdaad (patch)
tree7d260345eced8f034bc3fba811c53db5955d7b52 /ChangeLog
parent9394f82f0df0a55a040d38a8d908eb924d848792 (diff)
downloadpylint-dbe36b27eb863a58693ad04f0d28b9767a8bdaad.tar.gz
Add a new error, 'invalid-unary-type-operand'.
This new error is emitted when an unary operand is used on something which doesn't support that operation (for instance, using the unary bitwise inversion operator on an instance which doesn't implement __invert__).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 29cbc87..e6204fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -155,6 +155,12 @@ ChangeLog for Pylint
if pylintrc is not found. Dotted pylintrc files will not be searched
in the parents of the current folder, as it is done for pylintrc.
+ * Add a new error, 'invalid-unary-type-operand', emitted when
+ an unary operand is used on something which doesn't support that
+ operation (for instance, using the unary bitwise inversion operator
+ on an instance which doesn't implement __invert__).
+
+
2015-03-14 -- 1.4.3