PY-3569 Inspection to warn if a loop variable is assigned inside the loop

This commit is contained in:
Ilya Kazakevich
2014-01-17 14:36:35 +04:00
parent 4948059a64
commit d0d85af581
11 changed files with 227 additions and 0 deletions
@@ -0,0 +1,13 @@
<html>
<body>
<span style="font-family: verdana,serif;">
This inspection checks for cases when loop variable is redeclared inside of loop.
</span>
<pre style="font-family: monospace">
for i in xrange(5):
for i in xrange(20, 25):
print("Inner", i)
print("Outer", i)
</pre>
</body>
</html>