diff options
author | Jürgen Hermann <jh@web.de> | 2016-06-24 15:11:53 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-06-24 14:11:53 +0100 |
commit | 1fa9a57361841c7b64b4ac0796af497cc365b1a6 (patch) | |
tree | 246d08b29aeac5dd4f2d734fb4399bd1dd63e898 /examples | |
parent | ede507509b4631614f67c1bf2dc2c64f9880169f (diff) | |
download | pylint-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 'examples')
-rw-r--r-- | examples/pylintrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pylintrc b/examples/pylintrc index 9a2a7771c..a9b6ce4d3 100644 --- a/examples/pylintrc +++ b/examples/pylintrc @@ -228,7 +228,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 +ignored-classes=SQLObject, optparse.Values, thread._local, _thread._local # When zope mode is activated, add a predefined set of Zope acquired attributes # to generated-members. |