From 5b9a8c20186ab0fd80e09ca3db495840b81937de Mon Sep 17 00:00:00 2001 From: Anentropic Date: Wed, 18 Nov 2015 12:07:22 +0000 Subject: error E0201 is obsolete - now E1101 --HG-- branch : remove-E0201-references --- examples/pylintrc | 2 +- man/pylint.1 | 2 +- pylint/checkers/typecheck.py | 2 +- pylintrc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/pylintrc b/examples/pylintrc index 9c3a58996..9a2a7771c 100644 --- a/examples/pylintrc +++ b/examples/pylintrc @@ -235,7 +235,7 @@ ignored-classes=SQLObject zope=no # List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E0201 when accessed. Python regular +# system, and so shouldn't trigger E1101 when accessed. Python regular # expressions are accepted. generated-members=REQUEST,acl_users,aq_parent diff --git a/man/pylint.1 b/man/pylint.1 index fd12abb6d..a5d86884f 100644 --- a/man/pylint.1 +++ b/man/pylint.1 @@ -215,7 +215,7 @@ List of classes names for which member attributes should not be checked (useful .IP "--zope=" When zope mode is activated, add a predefined set of Zope acquired attributes to generated-members. [current: no] .IP "--generated-members=" -List of members which are set dynamically and missed by pylint inference system, and so shouldn't trigger E0201 when accessed. Python regular expressions are accepted. [current: REQUEST,acl_users,aq_parent] +List of members which are set dynamically and missed by pylint inference system, and so shouldn't trigger E1101 when accessed. Python regular expressions are accepted. [current: REQUEST,acl_users,aq_parent] .SH SPELLING .IP "--spelling-dict=" diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py index 8874c634f..f8c75dd15 100644 --- a/pylint/checkers/typecheck.py +++ b/pylint/checkers/typecheck.py @@ -296,7 +296,7 @@ class should be ignored. A mixin class is detected if its name ends with \ 'type' : 'string', 'metavar' : '', 'help' : 'List of members which are set dynamically and \ -missed by pylint inference system, and so shouldn\'t trigger E0201 when \ +missed by pylint inference system, and so shouldn\'t trigger E1101 when \ accessed. Python regular expressions are accepted.'} ), ) diff --git a/pylintrc b/pylintrc index d245611bc..3f1c754cd 100644 --- a/pylintrc +++ b/pylintrc @@ -267,7 +267,7 @@ ignored-modules= ignored-classes=SQLObject, optparse.Values # List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E0201 when accessed. Python regular +# system, and so shouldn't trigger E1101 when accessed. Python regular # expressions are accepted. generated-members=REQUEST,acl_users,aq_parent -- cgit v1.2.1