From 1fa9a57361841c7b64b4ac0796af497cc365b1a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hermann?= Date: Fri, 24 Jun 2016 15:11:53 +0200 Subject: 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. --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pylintrc') 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 -- cgit v1.2.1