summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorJürgen Hermann <jh@web.de>2016-06-24 15:11:53 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2016-06-24 14:11:53 +0100
commit1fa9a57361841c7b64b4ac0796af497cc365b1a6 (patch)
tree246d08b29aeac5dd4f2d734fb4399bd1dd63e898 /pylintrc
parentede507509b4631614f67c1bf2dc2c64f9880169f (diff)
downloadpylint-git-1fa9a57361841c7b64b4ac0796af497cc365b1a6.tar.gz
Added threading.local to ignored classes default list (#946)
Added threading.local to ignored classes default list Note that the implementation names for Python 2/3 are used (threading.local is an alias). Also changed related places for consistency.
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index f5ccaff91..5b89592d9 100644
--- a/pylintrc
+++ b/pylintrc
@@ -269,7 +269,7 @@ ignored-modules=
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set).
-ignored-classes=SQLObject, optparse.Values
+ignored-classes=SQLObject, optparse.Values, thread._local, _thread._local
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular