473,422 Members | 1,759 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,422 software developers and data experts.

messages from pylint - need some reasoning

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 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
mutable, and have to be passed back.
Similiar explanations I am searching for

2nd) "to many statements (in function / method)
okay, shorter functions are easier to grasp. Is there any more
reason?

3rd) space before operators, space after operators, space after ","
that's just readability, or is there some deaper reasoning?

4th) maximum line length
yeah, more then 80 chars suck when outputting to punching cards; but
any 21century reason for this default? (can and have made it higer)
5th) "Too many branches"
"Used when a function or method has too many branches, making it hard
to follow."

So what is the preferred way of repairng this?

Especially if the branches are something like:

if checkforcondition1():
# inlinecode
# to handlecondition1

if checkforcondition2():
# inlinecode
# to handlecondition1

[...]

and multiple conditions can be present at the same time.

Something like mytodolist=[ (tester1, handler1), (tester2,
handler2), ...] and

for tester, handler in mytodolist:
if tester(situation):
handler(situation)

would get rid of the branches; BUT... I cannot see how that is really
easier to follow.
Who can give me some hints to improve my code or arguments to switch
of that warnings?

best wishes,

Harald

Oct 17 '08 #1
2 12324
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 mutable,
and have to be passed back.
Many local variables can also make it harder to follow what the function
is doing. As rule of thumb a function should do "just one thing", many
variables indicate the function might be doing too much. Or maybe, if
most of the variables belong together somehow, they are candidates for a
class to encapsulate them.

Pylint's default limit is set to 15. So there are more than 15 named
things one has to follow when that message appears.
Similiar explanations I am searching for

2nd) "to many statements (in function / method) okay, shorter functions
are easier to grasp. Is there any more reason?
I think that's *the* reason. Especially in a such a high level language
like Python most things can be expressed quite compact but still
readable. Huge function bodies are an indicator that a function is doing
too much and not just "one thing".

The more code in the function the higher the risk of many nested
indentations and hitting the maximum line length guide.
4th) maximum line length
yeah, more then 80 chars suck when outputting to punching cards; but any
21century reason for this default? (can and have made it higer)
80 characters are still the default width of most terminals and code is
often seen there in diffs or python shell sessions for example. And even
while there is more space on today's monitors, modern IDEs occupy it with
all sorts of function and class browsers, breakpoint windows, online help
etc. so that 80 characters is still a good choice for the editor window.

When posting to mailing lists or newsgroups 80 characters (actually just
75) are the safe limit to ensure that most people can read posted code
without annoying line breaks forced by the reading application. Not so
bad with languages like C because the code still works when copied and
pasted into a text file, but quite catastrophic in languages like Python
that rely on correct indentation.

Last but not least typesetting tells that about 60 to 70 characters are a
good line length to read texts. While program source is usually more
"light" there's still documentation and comments in the source that
should follow the guide lines of typesetting.
5th) "Too many branches"
"Used when a function or method has too many branches, making it hard to
follow."

So what is the preferred way of repairng this?
Breaking it into smaller functions.
Especially if the branches are something like:

if checkforcondition1():
# inlinecode
# to handlecondition1

if checkforcondition2():
# inlinecode
# to handlecondition1

[...]

and multiple conditions can be present at the same time.

Something like mytodolist=[ (tester1, handler1), (tester2, handler2),
...] and

for tester, handler in mytodolist:
if tester(situation):
handler(situation)

would get rid of the branches; BUT... I cannot see how that is really
easier to follow.
Well, you have more, smaller functions that are themselves easier to
follow. And you can/should document each function. Something that you
might not have done (so extensively) in the one function version. Also
the separation of the former "inline code" reduces the possiblity of
names reused for different things in different branches and maybe even
side effects between the branches if they accidentally share objects.

And this refactoring takes an indentation level from the old inline code,
making it easier to keep the lines in the 80 characters limit.
Who can give me some hints to improve my code or arguments to switch of
that warnings?
Try to write the code with less names and statements. Write functions
that do just "one thing" and split big functions into smaller ones.

Ciao,
Marc 'BlackJack' Rintsch
Oct 17 '08 #2
GHUM <ha**************@gmail.comwrites:
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.

Read it cover to cover, and you will not only improve your programming
skill, you will also be able to explain to yourself *why* some styles
are better than others.

--
\ “It is difficult to get a man to understand something when his |
`\ salary depends upon his not understanding it.” —Upton Sinclair, |
_o__) 1935 |
Ben Finney
Oct 17 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Frans Englich | last post by:
Hello, I take PyChecker partly as an recommender of good coding practice, but I cannot make sense of some of the messages. For example: runner.py:878: Function (main) has too many lines (201)...
8
by: clarket | last post by:
Hi, I was wondering if it was possible to have a variable count down in a window.confirm dialog box. Like the type of message some systems have to log users out automatically. E.g "You will...
4
by: Michael Yanowitz | last post by:
Hello: I ran the new pylint and my code and I had a few questions on why those are warnings or what I can do to fix them: 1) W: 0: Too many lines in module (1587) Why is 1587 considered too...
5
by: Tuomas | last post by:
#!/usr/bin/python """test pydev_0.9.3/../pylint""" __revision__ = "test_mod 0.1 by TV 06/10/22" lst = lst = map(lambda x: x.strip(), lst) result = """ No config file found, using default...
7
by: montyphyton | last post by:
Some recent posts about Python programming style got me thinking. Since we have the PEP 8 which gives some guidelines about the style to be used, do we have any program that can check for...
2
by: lgfang | last post by:
Hi, I think this is a bug of pylint.el. But I failed finding a way to submit the bug neither in its official site nor in google. So I post it here wishing it may be useful for some buddies. ...
2
by: Mick Charles Beaver | last post by:
Hello, I've been looking into using PyLint on some of my programs, just as a best practices kind of thing. Here's a snippet:...
2
by: dmitrey | last post by:
Hi all, I have Eric 4.1.1, pylint and Eric pylint plugin installed, but I cannot find how to use pylint from Eric IDE GUI. Does anyone know? Thank you in advance, D.
1
by: Stefan Rank | last post by:
on 31.07.2008 11:29 Diez B. Roggisch said the following: <snip> <snip> Three installations of pylint 0.14.0 that I have access to from here: pylint.bat 0.14.0, astng 0.17.2, common 0.27.0...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.