vote up 14 vote down star
12

My background is C and C++. I like Python a lot, but there's one aspect of it (and other interpreted languages I guess) that is really hard to work with when you're used to compiled languages.

When I've written something in Python and come to the point where I can run it, there's still no guarantee that no language-specific errors remain. For me that means that I can't rely solely on my runtime defense (rigorous testing of input, asserts etc.) to avoid crashes, because in 6 months when some otherwise nice code finally gets run, it might crack due to some stupid typo.

Clearly a system should be tested enough to make sure all code has been run, but most of the time I use Python for in-house scripts and small tools, which ofcourse never gets the QA attention they need. Also, some code is so simple that (if your background is C/C++) you know it will work fine as long as it compiles (e.g. getter-methods inside classes, usually a simple return of a member variable).

So, my question is the obvious - is there any way (with a special tool or something) I can make sure all the code in my Python script will "compile" and run?

flag

Beautiful... I'm a C/C++ guy new to Python too, and this problem has frustrated me to no end. I never thought to ask about a solution though, I didn't think one could exist. – Head Geek Jun 22 at 14:08

5 Answers

vote up 19 vote down check

Look at PyChecker and PyLint.

Here's example output from pylint, resulting from the trivial program:

print a

As you can see, it detects the undefined variable, which py_compile won't (deliberately).

in foo.py:

************* Module foo
C:  1: Black listed name "foo"
C:  1: Missing docstring
E:  1: Undefined variable 'a'


...

|error      |1      |1        |=          |

Trivial example of why tests aren't good enough, even if they cover "every line":

bar = "Foo"
foo = "Bar"
def baz(X):
    return bar if X else fo0

print baz(input("True or False: "))

EDIT: PyChecker handles the ternary for me:

Processing ternary...
True or False: True
Foo

Warnings...

ternary.py:6: No global (fo0) found
ternary.py:8: Using input() is a security problem, consider using raw_input()
link|flag
1  
Good recommendation of pychecker and pylint. pyflakes is also good because it's very fast, and the svn trunk version will catch unused local variables. As for testing "every line," I think you should at least test every "path." That would have caught your blow-up example. – Ryan Ginstrom Jun 22 at 13:54
1  
Works great Matthew, thanks! – R.A Jun 22 at 13:58
It is impossible to identify (and then test) every possible logic path, because that is equivalent to the halting problem (en.wikipedia.org/wiki/Code_coverage). – Matthew Flaschen Jun 22 at 14:03
You can certainly ensure that almost every piece of code is hit at least once. You can't test every logic path for even a slightly complex program, which is why I put "path" in quotes. Making sure every piece of code was hit in your example would have caught the error. – Ryan Ginstrom Jun 22 at 15:17
2  
+1 because these tools definitely help. But line-coverage would find the typo above if you test logical-lines, not physical-lines. Also, I am confused as to why PyChecker is complaining about 'a' but not 'fo0'? – Adam Luter Jun 22 at 16:09
show 2 more comments
vote up 1 vote down

If you are using Eclipse with Pydev as an IDE, it can flag many typos for you with red squigglies immediately, and has Pylint integration too. For example:

foo = 5
print food

will be flagged as "Undefined variable: food". Of course this is not always accurate (perhaps food was defined earlier using setattr or other exotic techniques), but it works well most of the time.

In general, you can only statically analyze your code to the extent that your code is actually static; the more dynamic your code is, the more you really do need automated testing.

link|flag
vote up 1 vote down

Others have mentioned tools like PyLint which are pretty good, but the long and the short of it is that it's simply not possible to do 100%. In fact, you might not even want to do it. Part of the benefit to Python's dynamicity is that you can do crazy things like insert names into the local scope through a dictionary access.

What it comes down to is that if you want a way to catch type errors at compile time, you shouldn't use Python. A language choice always involves a set of trade-offs. If you choose Python over C, just be aware that you're trading a strong type system for faster development, better string manipulation, etc.

link|flag
vote up 0 vote down

I think what you are looking for is code test line coverage. You want to add tests to your script that will make sure all of your lines of code, or as many as you have time to, get tested. Testing is a great deal of work, but if you want the kind of assurance you are asking for, there is no free lunch, sorry :( .

link|flag
1  
He is not looking for code to pass tests. He already said, "in 6 months when the otherwise nice code finally gets run, it might simply crack due to some typo." Tests check whether the code does "the right thing" for some finite input set, not whether it uses valid syntax throughout (what the OP wants) – Matthew Flaschen Jun 22 at 12:41
1  
It won't pass many tests if it has typos. If your coverage touches every line of code (not every logic path), you'll be reasonably sure that it will work reliably. – S.Lott Jun 22 at 13:01
-1. I'm sorry Adam, the question suggests such QA efforts as rather unrealistic, hence the answer is of little help. – R.A Jun 22 at 13:31
"every line of code" doesn't buy you nearly as much as people think. Trivial example posted in my answer. – Matthew Flaschen Jun 22 at 13:34
While "every line of code" is not isomorphic to "perfect", it covers as many bases as a C++ compiler covers. C++ code can compile and be full of holes that don't surface until the program is abused in production. A simple set of unit tests will give you tremendous confidence at very, very low cost. Python is so easy to write that the incremental cost of a few unit tests is still (often) cheaper to develop than C++. – S.Lott Jun 22 at 13:41
show 6 more comments
vote up 0 vote down

Your code actually gets compiled when you run it, the Python runtime will complain if there is a syntax error in the code. Compared to statically compiled languages like C/C++ or Java, it does not check whether variable names and types are correct – for that you need to actually run the code (e.g. with automated tests).

link|flag
1  
-1. It seems there actually are tools around to discover errors like that, hence not needing to actually run the code to discover them. – R.A Jun 22 at 13:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.