summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-30 01:31:08 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-30 01:31:08 +0300
commit82b63d329b8722d49fe8da38e94209bda2604796 (patch)
tree9f9ff1dadd73e5b656aa9962a5b97acdacda5107 /ChangeLog
parentc50c1c897678a2b48cd0b55f1b0b24cdfbc412f2 (diff)
downloadpylint-82b63d329b8722d49fe8da38e94209bda2604796.tar.gz
Add a new error, 'unsupported-binary-operation'.
This error is emitted when two a binary arithmetic operation is executed between two objects which don't support it (a number plus a string for instance).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e53733..7d3b2ef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -195,7 +195,11 @@ ChangeLog for Pylint
* Add a new error, 'star-needs-assignment-target', emitted on Python 3 when
a Starred expression (*x) is not used in an assignment target. This is not
- caught when parsing the AST on Python 3, so it needs to be a separate check.
+ caught when parsing the AST on Python 3, so it needs to be a separate check.
+
+ * Add a new error, 'unsupported-binary-operation', emitted when
+ two a binary arithmetic operation is executed between two objects
+ which don't support it (a number plus a string for instance).