GHUM <[EMAIL PROTECTED]> writes:
> Who can give me some hints to improve my code
In addition to the responses you've already had, I would highly
recommend you get ahold of the book “Code Complete”, which gives
excellent, reasoned advice on how to perform the line-by-line craft of
programming.
Re
On Fri, 17 Oct 2008 00:59:16 -0700, GHUM wrote:
> Example:
> 1st) "to many local variables"
> I searched big G, and found: many local variables make it harder to
> refactor, as all those variables will have to be passed to the
> factored-out function. Even worse when the local variables are mutabl
Hello,
I am pylinting some software of mine.
Now pylint throws messages, and I know of pylint --help-msg to get
some more text. What is missing out are explanation, WHY some things
are bad, so I am searching for explanations and ways to improve my
code:
Example:
1st) "to many local variables"
I