From: Skip M. <sk...@po...> - 2014-03-06 18:38:07
|
On Thu, Mar 6, 2014 at 7:47 AM, Federico Ariza <ari...@gm...> wrote: > Stupid simple question > Is there a policy/tradition/convention to name unused variables inside the code? While Eric indicates there is no policy, for the Python parts of your code, I recommend you follow whatever the default is that pylint or one of the other lint-like checkers recommend. Pylint likes a leading underscore, but if you have a different natural preference, I recommend you post your query at cod...@py.... It's where all the cool static checker folk hang out. I haven't read PEP 8 in a long while. Does Guido express a preference there? Skip (not a cool static checker guy) |