Derek> You're absolutely right ... I don't get these errors at all and
    Derek> I've clipped the wrong part from my pylintrc ... instead, you can
    Derek> set dummy-variables

    Derek>      dummy-variables-rgx=_|dummy|i|j|k

    Derek> That lets i, j, k be used as dummy/unused variables.  

I often do use i, j, k as loop index variables, as I suspect to other people
(call it my Fortran roots).  Your change would mask accidental non-use of
such variables because you are in effect telling pylint that you never use
i, j, k, dummy, or variables with a leading underscore anywhere in your
code.

-- 
Skip Montanaro - [email protected] - http://www.smontanaro.net/
_______________________________________________
Python-Projects mailing list
[email protected]
http://lists.logilab.org/mailman/listinfo/python-projects

Reply via email to