summaryrefslogtreecommitdiff
path: root/doc/whatsnew/2.0.rst
diff options
context:
space:
mode:
authorBryce Guinta <bryce.paul.guinta@gmail.com>2018-03-16 09:21:56 -0700
committerClaudiu Popa <pcmanticore@gmail.com>2018-03-16 17:21:56 +0100
commit12e480843286108d7018f8025ce847288d70cdc9 (patch)
tree9a7e3bf61200b9298b1a7047a804b49cc0da54fd /doc/whatsnew/2.0.rst
parent9dd978aaed0daf852d8caed515b9e4e13f2dfcc7 (diff)
downloadpylint-git-12e480843286108d7018f8025ce847288d70cdc9.tar.gz
Suppress false-positive not-callable messages from class descriptors (#1911)
This is a holdover until astroid can be fixed. Astroid needs to understand descriptors or at least raise Uninferable instead of allowing the descriptor instance through Close #1699
Diffstat (limited to 'doc/whatsnew/2.0.rst')
-rw-r--r--doc/whatsnew/2.0.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/whatsnew/2.0.rst b/doc/whatsnew/2.0.rst
index 1451fa463..e407e449d 100644
--- a/doc/whatsnew/2.0.rst
+++ b/doc/whatsnew/2.0.rst
@@ -45,3 +45,6 @@ Other Changes
* Fix false positive ``undefined-variable`` for lambda argument in
class definitions
+
+* Suppress false-positive ``not-callable`` messages from certain
+ staticmethod descriptors