Remove E1103 and E1101 errors from ignore list in pylintrc file.
We are going to use "# pylint disable-msg=E1103" comments in the source file itself to ignore false-positives.
Patch by: Pawel Solyga
Reviewed by: to-be-reviewed
--- a/scripts/pylint/pylintrc Mon Apr 27 13:01:53 2009 +0200
+++ b/scripts/pylint/pylintrc Tue Apr 28 12:47:06 2009 +0200
@@ -66,10 +66,6 @@
# R0801: Similar lines in %s files. Indicates that a set of similar lines has been detected
# among multiple file. This usually means that the code should be refactored to avoid this
# duplication.
-# E1103: %s %r has no %r member (but some types could not be inferred) Used when a variable is
-# accessed for an unexistant member, but astng was not able to interpret all possible
-# types of this variable.
-# E1101: %s %r has no %r member Used when a variable is accessed for an unexistant member.
# C0302: Too many lines in module (%s) Used when a module has too much lines, reducing
# its readibility.
# W0602: Using global for %r but no assigment is done Used when a variable is defined through
@@ -80,7 +76,7 @@
# W0704: Except doesn't do anything Used when an except clause does nothing but "pass"
# and there is no "else" clause.
# I0011: Locally disabling %s Used when an inline option disable a message or a messages category.
-disable-msg=W0613,W0622,W0232,W0142,W0102,W0212,R0201,R0801,E1103,E1101,C0302,W0602,W0603,W0704,I0011
+disable-msg=W0613,W0622,W0232,W0142,W0102,W0212,R0201,R0801,C0302,W0602,W0603,W0704,I0011
[REPORTS]