summaryrefslogtreecommitdiff
path: root/pylint
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-03-03 13:03:57 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2019-03-03 13:03:57 +0100
commit73c5c2fd4d5de0d38bebed7bd3688cb747225f39 (patch)
tree30b177365f24d5f242df974de878f296e7078050 /pylint
parent55de04f2b01c794d031c5d8090b2b2a2b5a8ba77 (diff)
downloadpylint-git-73c5c2fd4d5de0d38bebed7bd3688cb747225f39.tar.gz
Include the missing __rfloordiv__. Close #2783
Diffstat (limited to 'pylint')
-rw-r--r--pylint/checkers/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint/checkers/utils.py b/pylint/checkers/utils.py
index b4129389f..dbbba49b0 100644
--- a/pylint/checkers/utils.py
+++ b/pylint/checkers/utils.py
@@ -149,6 +149,7 @@ _SPECIAL_METHODS_PARAMS = {
"__mul__",
"__truediv__",
"__floordiv__",
+ "__rfloordiv__",
"__mod__",
"__divmod__",
"__lshift__",