summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-11-18 14:52:01 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-11-18 14:52:01 +0200
commitf137fdb1f38054fc5a1a967dbe6ff37a12ab9adb (patch)
tree6dcd5732f3e4f3e1d765cd6643d07801c6c20e52
parent6cfde34cb1b571993fc9b4c7b82ead994f8c7b95 (diff)
parent23964f3ed528b42b289b7a0fa9d14f03affe1e68 (diff)
downloadpylint-f137fdb1f38054fc5a1a967dbe6ff37a12ab9adb.tar.gz
Merged in anentropic/pylint/remove-E0201-references (pull request #303)
error E0201 is obsolete - now E1101
-rw-r--r--examples/pylintrc2
-rw-r--r--man/pylint.12
-rw-r--r--pylint/checkers/typecheck.py2
-rw-r--r--pylintrc2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 9c3a589..9a2a777 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 fd12abb..a5d8688 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=<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>"
-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=<dict name>"
diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py
index 8874c63..f8c75dd 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' : '<members names>',
'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 d245611..3f1c754 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