summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-27 18:43:00 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-27 18:43:00 +0300
commitebeae1a3f504dafe12921180103729aaf1f22cca (patch)
treea85bd7f927ab436c524368cedc407c0cc63426c3 /pylintrc
parente067d1526985ded7f64b12e0c4c277f700d0ca43 (diff)
downloadastroid-git-ebeae1a3f504dafe12921180103729aaf1f22cca.tar.gz
Improve the inference of binary arithmetic operations (normal and augmented)
This patch completely changes the way how binary and augmented operations are inferred, trying to be as compatible as possible with the semantics from the language reference.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index f3ad435c..18e062db 100644
--- a/pylintrc
+++ b/pylintrc
@@ -98,7 +98,7 @@ disable=invalid-name,protected-access,no-self-use,unused-argument,
too-many-return-statements,redefined-outer-name,undefined-variable,
too-many-locals,method-hidden,duplicate-code,attribute-defined-outside-init,
fixme,missing-docstring,too-many-lines,too-many-statements,undefined-loop-variable,
- unpacking-non-sequence,import-error,no-name-in-module,bad-builtin
+ unpacking-non-sequence,import-error,no-name-in-module,bad-builtin,too-many-arguments
[BASIC]