| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
|
|
|
|
|
|
| |
The removed checks are interface-is-not-class,
missing-interface-method, unresolved-interface. The reason is that
its better to start recommending ABCs instead of the old Zope era
of interfaces.
|
|
|
|
|
|
| |
duplicate-bases is emitted when a class has the same bases
listed more than once in its bases definition, while inconsistent-mro
is emitted when no sane mro hierarchy can be determined. Closes issue #526.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
These warnings were promoted since they could uncover
potential bugs in the code and since most people are using `pylint -E` anyway,
it's good to have them as errors. These warnings are: assignment-from-none,
unbalanced-tuple-unpacking, unpacking-non-sequence, non-iterator-returned.
Closes issue #388.
|
| |
|
|
|