Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pycqa/pylint
1 result
Show changes
Commits on Source (3)
Loading
Loading
@@ -84,7 +84,7 @@ class EncodingChecker(BaseChecker):
# In case the module ends with commented lines, the astroid parser
# don't take into account those lines, then:
# - the line number of those lines is greater than the
# module last line number (module.tolineno)
# module last line number (module.tolineno)
# - astroid module object can't inform pylint
# of disabled messages in those extra lines.
if lineno > module_last_lineno:
Loading
Loading
Loading
Loading
@@ -186,7 +186,7 @@ MSGS = {
'Used when a variable is accessed for an unexistent member.',
{'old_names': [('E1103', 'maybe-no-member')]}),
'I1101': ('%s %r has not %r member%s, but source is unavailable. Consider '
'adding this module to extension-package-whitelist if you want '
'adding this module to extension-pkg-whitelist if you want '
'to perform analysis based on run-time introspection of living objects.',
'c-extension-no-member',
'Used when a variable is accessed for non-existent member of C '
Loading
Loading
Loading
Loading
@@ -358,7 +358,7 @@ class VariablesChecker(BaseChecker):
'end with one of those strings.'}
),
("redefining-builtins-modules",
{'default': ('six.moves', 'future.builtins'), 'type': 'csv',
{'default': ('six.moves', 'past.builtins', 'future.builtins'), 'type': 'csv',
'metavar': '<comma separated list>',
'help': 'List of qualified module names which can have objects '
'that can redefine builtins.'}
Loading
Loading