Why doesn't the following produce a pylint warning?
for counter in range(2): for counter in range(3): print(counter)
Note that we've used "counter" twice.
Thanks!
On Mon, May 23, 2016 at 4:46 PM, Dan Stromberg strombrg@gmail.com wrote:
Why doesn't the following produce a pylint warning?
for counter in range(2): for counter in range(3): print(counter)
Note that we've used "counter" twice.
Thanks!
-- Dan Stromberg
code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
Hi,
It's probably a bug, please fill an issue in our bug tracker, so we don't lose this.
Thank you!