forked from pylint-dev/pylint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
… loop variables in body
- Loading branch information
1 parent
3fc855f
commit 2de3d11
Showing
10 changed files
with
54 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,5 +113,10 @@ | |
"mails": ["[email protected]", "[email protected]"], | ||
"authoritative_mail": "[email protected]", | ||
"name": "Tushar Sadhwani" | ||
}, | ||
{ | ||
"mails": ["[email protected]"], | ||
"authoritative_mail": "[email protected]", | ||
"name": "Jacob Walls" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
"""Tests for redefinitions of loop variables inside the loop body. | ||
See: https://github.com/PyCQA/pylint/issues/5608 | ||
""" | ||
# pylint: disable=invalid-name | ||
|
||
lines = ["1\t", "2\t"] | ||
for line in lines: | ||
line = line.strip() # [redefined-outer-name] | ||
|
||
lines = [(1, "1\t"), (2, "2\t")] | ||
for i, line in lines: | ||
line = line.strip() # [redefined-outer-name] | ||
|
||
line = "no warning" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
redefined-outer-name:9:4:9:8::Redefining name 'line' from outer scope (line 8):UNDEFINED | ||
redefined-outer-name:13:4:13:8::Redefining name 'line' from outer scope (line 12):UNDEFINED |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters