summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-07-02 15:17:10 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-07-02 15:17:10 +0300
commit10b1a52534f5d39a9894b552ab345f4ce0c195b9 (patch)
tree70eed77a290b5a4a986605023fb5a616d420cfb3 /ChangeLog
parent6184c47962d8f693d0eb13fe149ca2c7666bf2fe (diff)
downloadpylint-10b1a52534f5d39a9894b552ab345f4ce0c195b9.tar.gz
Disable for unsupported-binary-operation
Unfortunately, this warning exhibits currently way too many false positives, practically rendering this error useless. I can't fix all of them until I release Pylint 1.5, so the most reasonable choice for now is to disable it and reenable it as soon as we fix those problems.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d3b2ef..366cbc6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -200,6 +200,8 @@ ChangeLog for Pylint
* 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).
+ This is currently disabled, since the it exhibits way too many false
+ positives, but it will be reenabled as soon as possible.