summaryrefslogtreecommitdiff
path: root/pylint/extensions/redefined_loop_name.py
Commit message (Collapse)AuthorAgeFilesLines
* [PyCQA migration] Upgrade links to the repositories in code and doc (#8514)Pierre Sassoulas2023-03-291-2/+2
|
* [pre-commit] Upgrade to black 23.1a1 with 2023's formatting (#7965)Pierre Sassoulas2022-12-271-1/+0
|
* Move changelog for redefined-loop-name and add "Checker" to class nameJacob Walls2022-05-051-2/+2
|
* Add optional check `redefined-loop-name` (#5649)Jacob Walls2022-05-011-0/+89
* Also change message type for inner loops overwriting the outer loop variable from `redefined-outer-name` to `redefined-loop-name` * Update redefined-outer-name description * Add coverage and fix preexisting false positive When the check for inner loops redefining outer loop variables was redefined-outer-name, it assumed enclosing for-loops were in the same namespace. Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>