summaryrefslogtreecommitdiff
path: root/man
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 /man
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 'man')
-rw-r--r--man/pylint.12
1 files changed, 1 insertions, 1 deletions
diff --git a/man/pylint.1 b/man/pylint.1
index a335ced28..d3024e34a 100644
--- a/man/pylint.1
+++ b/man/pylint.1
@@ -211,7 +211,7 @@ Tells whether missing members accessed in mixin class should be ignored. A mixin
.IP "--ignored-modules=<module names>"
List of module names for which member attributes should not be checked (useful for modules/projects where namespaces are manipulated during runtime and thus existing member attributes cannot be deduced by static analysis [current: none]
.IP "--ignored-classes=<members names>"
-List of classes names for which member attributes should not be checked (useful for classes with attributes dynamically set). [current: SQLObject]
+List of classes names for which member attributes should not be checked (useful for classes with attributes dynamically set). [current: SQLObject, optparse.Values, thread._local, _thread._local]
.IP "--zope=<y_or_n>"
When zope mode is activated, add a predefined set of Zope acquired attributes to generated-members. [current: no]
.IP "--generated-members=<members names>"