summaryrefslogtreecommitdiff
path: root/pylint/checkers/classes.py
Commit message (Expand)AuthorAgeFilesLines
* Fix some LGMT errors - unreachable-statementMarc Mueller2021-04-071-1/+0
* Replace filterMarc Mueller2021-04-031-3/+1
* Replace mapMarc Mueller2021-04-031-1/+1
* Allow protected-access in class methods (#4267)James Sinclair2021-04-011-0/+46
* Prepare 2.7.3 release (#4261)pylint-2.7.32.7Pierre Sassoulas2021-03-291-0/+1
* Import astroid with import x or from x import y but not bothPierre Sassoulas2021-03-281-17/+13
* Fix private method hidden by ancestor class attribute (#4177)tiagohonorato2021-03-211-0/+2
* Remove TypedDict hotfixMarc Mueller2021-02-281-5/+0
* Apply copyrite --contribution-thresholdPierre Sassoulas2021-02-211-2/+4
* Migrate from % syntax or bad format() syntax to fstringPierre Sassoulas2021-02-211-1/+1
* Move from % string formatting syntax to f-string or .format()Pierre Sassoulas2021-02-211-2/+2
* Remove the # coding, since PEP3120 the default is UTF8Pierre Sassoulas2021-02-211-1/+0
* Move from format() to f-string where it makes sensePierre Sassoulas2021-02-161-1/+1
* Fix W504 line break after binary operatorPierre Sassoulas2021-02-151-4/+2
* Fix TypedDict inherit-non-class false-positive Python 3.9+Marc Mueller2021-02-151-0/+5
* Fix signature-differsGergelyKalmar2020-12-201-1/+4
* Taking into account @Pierre-Sassoulas remarkshippo912020-09-271-5/+7
* Adds an option to the ClassChecker to activate/deactivate protected-access me...hippo912020-09-261-5/+15
* Remove unsecable whitespace in the whole codebasePierre Sassoulas2020-09-121-4/+4
* Update formatting following black and isort updatePierre Sassoulas2020-09-101-6/+4
* Merge branch 'master' into bug_pylint_3468hippo912020-09-061-0/+1
|\
| * def _has_different_parameters_default_value method add the astroid.DIct class...hippo912020-08-171-0/+1
* | Corrects some inconsistent-return-statements occurenceshippo912020-08-201-0/+1
|/
* `property-with-parameters` properly handles abstract propertiesClaudiu Popa2020-05-141-1/+6
* Fix a crash in `method-hidden` lookup for unknown base classesClaudiu Popa2020-04-281-9/+4
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-6/+17
* Positional-only arguments are taken in account for ``useless-super-delegation``Claudiu Popa2020-03-281-6/+13
* Fix R1721: Unnecessary use of a comprehensionPierre Sassoulas2020-03-271-1/+1
* Fix overzealous `arguments-differ` for variadicsmattlbeck2020-03-271-15/+25
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-241-1/+0
* Correct some types and guard against unexpected values in classes checkersClaudiu Popa2020-03-081-1/+1
* ``no-self-use`` is no longer emitted for typing stubs.Claudiu Popa2020-03-071-0/+2
* Add async def checks for overridden methods (#3392)craig-sh2020-02-121-3/+20
* Enable else-if-used extension (#3316)Nick Drozd2019-12-241-1/+1
* Fix a false positive caused by the newly added support for propertiesClaudiu Popa2019-12-041-4/+8
* Enhance the protocol checker (#3259)craig-sh2019-11-271-26/+208
* Reverse the order of positional args check in _check_first_arg_for_typeClaudiu Popa2019-11-081-3/+3
* Return early in visit_class to get rid of a too many branchesClaudiu Popa2019-10-301-14/+17
* Catch invalid MRO constructs when ignoring method-hiddenClaudiu Popa2019-10-301-5/+9
* Fixed method-hidden when subclass defines the method (#3206)Ashley Whetter2019-10-301-0/+6
* Refactor file checking for a simpler parallel API (#3016)Janne Rönkkö2019-10-181-1/+5
* Do not emit ``no-method-argument`` for functions using positional only args.Claudiu Popa2019-10-111-2/+7
* Exempt annotated assignments without variable from ``class-variable-slots-con...Claudiu Popa2019-09-301-1/+6
* Remove redundant compatibility code (#3097)Hugo van Kemenade2019-09-121-7/+1
* [pylint.checkers] Make the link between msgid and symbol strictly 1-1Pierre Sassoulas2019-08-191-2/+2
* Don't require super call from `typing.overload`-ed __init__Grygorii Iermolenko2019-08-161-1/+3
* Don't emit protected-acces for single underscore prefixed attributes in speci...hippo912019-08-061-0/+17
* Added a new check, ``invalid-overridden-method``Claudiu Popa2019-07-181-4/+34
* Added a new check, ``property-with-parameters``.Claudiu Popa2019-07-161-0/+11
* Excluded protocol classes from a couple of checks. Close #3002.Claudiu Popa2019-07-161-0/+2