pylint --list-msgs, v1.6.4

This file was automatically generated. Check out pylint-shortcodes's main page for more information.

ShortcodeNumberMessagePyLint Messages LinkDetails
Shortcode
Number
Message
PyLint Messages Link
Details
Shortcode
Number
Message
PyLint Messages Link
Details
abstract-class-instantiated E0110 Abstract class %r with abstract methods instantiated abstract-class-instantiated Used when an abstract class with `abc.ABCMeta` as metaclass has abstract methods and is instantiated.
abstract-method W0223 Method %r is abstract in class %r but is not overridden abstract-method Used when an abstract method (i.e. raise NotImplementedError) is not overridden in concrete class.
access-member-before-definition E0203 Access to member %r before its definition line %s access-member-before-definition Used when an instance member is accessed before it's actually assigned.
anomalous-backslash-in-string W1401 Anomalous backslash in string: '%s'. String constant might be missing an r prefix. anomalous-backslash-in-string Used when a backslash is in a literal string but not as an escape.
anomalous-unicode-escape-in-string W1402 Anomalous Unicode escape in byte string: '%s'. String constant might be missing an r or u prefix. anomalous-unicode-escape-in-string Used when an escape like \u is encountered in a byte string where it has no effect.
apply-builtin W1601 apply built-in referenced apply-builtin Used when the apply built-in function is referenced (missing from Python 3) This message can't be emitted when using Python >= 3.0.
arguments-differ W0221 Arguments number differs from %s %r method arguments-differ Used when a method has a different number of arguments than in the implemented interface or in an overridden method.
assert-on-tuple W0199 Assert called on a 2-uple. Did you mean 'assert x,y'? assert-on-tuple A call of assert on a tuple will always evaluate to true if the tuple is not empty, and will always evaluate to false if it is.
assigning-non-slot E0237 Assigning to attribute %r not defined in class slots assigning-non-slot Used when assigning to an attribute not defined in the class slots.
assignment-from-no-return E1111 Assigning to function call which doesn't return assignment-from-no-return Used when an assignment is done on a function call but the inferred function doesn't return anything.
ShortcodeNumberMessagePyLint Messages LinkDetails
Showing 1 to 10 of 251 entries