I'm getting quite a few errors in my code. Consequently, I would like to be able to minimize them at the outset or see as many errors as possible before code execution. Is this possible and if so, how can I do this?
|
|
If you're having problems with syntax, you could try an editor with syntax highlighting. Until you get the feel for a language, simple errors won't just pop out at you. The simplest form of debugging is just to insert some print statements. A more advanced (and extensible) form of this would be to use the logging module form the std lib. If actually want to step through your code, the python debugger is called pdb, which can be called from the command line, or embedded in your code. If you're used to a fully integrated IDE, I would recommend using Eclipse with pydev. |
||
|
|
|
|
Python provides a debugger which allows you to step through your code, inspect variables and manipulate them. Refer to http://www.ferg.org/papers/debugging_in_python.html which can take you over the steps... Also check the python standard library reference for pdb http://www.python.org/doc/2.5.2/lib/module-pdb.html --Amit |
||
|
|
|
|
Test early and test often. This doesn't necessarily mean to jump into the test driven design pool head first (though that's not such a bad idea). It just means, test your objects and methods as soon as you have something that works. Don't wait until you have a huge pile of code before doing testing. Invest some time in learning a testing framework. If it's trivial for you to type in a test case you'll more likely do it. If you don't have any sort of framework testing can be a pain so you'll avoid it. So, establish some good habits early on and you'll have fewer problems down the road. |
||
|
|
|
|
python -m pdb yourcode.py should do it. Alternatively you can "import pdb" in your code and use pdb.set_trace() to set break points. Refer the manual for more info: http://www.python.org/doc/2.5.2/lib/module-pdb.html |
||
|
|
|
|
Using assert statement liberally. |
||
|
|
|
|
All the really cool stuff is easily demonstrated in the interactive interpreter. I think this might be the "gold standard" for good design: Can you exercise your class interactively? If you can do stuff interactively, then you can write unittests and doctests with confidence that it's testable, simple, reliable. And, more important, you can explore it interactively. There's nothing better than the instant gratification that comes from typing code and seeing exactly what happens. The compiled language habits (write a bunch of stuff, debug a bunch of stuff, test a bunch of stuff) can be left behind. Instead, you can write a little bit of stuff, explore it, write a formal test and then attach your little bit of stuff to your growing final project. You still do overall design. But you don't squander time writing code that may or may not work. In Python you write code that works. If you're not sure, you play with it interactively until you're sure. Then you write code that works. |
||
|
|
Identifing errors before execution is the domain of static checking/analysis. I've had good luck using PyChecker for basic static checking of Python code. The pycheesecake site has a very good summary of testing tools for Python. |
||
|
|
|
|
Here is some techniques to facilitate debugging in Python:
At this point there is a little use for a formal python debugger. Winpdb is an external multi-platform GPL'ed GUI python debugger if you need one. |
|||
|
|
|
|
I set up Python to automatically start the debugger when there's an uncaught exception, using this trick. That way, you can easily examine the state of the program without too much logging code. (Plus, to send me a Growl notification.) Oh, and this way you can just create a break point in the code by adding
|
||
|
|
More often than not, I just use a bunch of print statements.
It's sometimes useful to do something like:
..with this you can quickly disable all your debugging print statements by changing the debug variable to False. While print-debugging will get you very far in most cases, sometimes it's difficult to debug things like loops, or a series of if/else/try/except/etc. For this a debugger that allows stepping though your code, and setting break-points is useful.
There is a very nice GUI equivalent pdb - Winpdb Basically you run Then you can step though the code by clicking the Step (or F6). F5 runs the code. If you click next to the line numbers, it sets a break point, where the code will automatically step (when you press run). I find it far easier to use, and it has lots of addition enhancements (like remote debugging, so you can run the backend portion ( |
|||
|
|
|
The PyDev plugin for eclipse is my tool of choice. It recognizes simple syntax mistakes and indentation errors and underlines the error with a red line. It has a powerful debugger and even has a plugin called PyLint which warns you about dangerous code. Edit: It also has a user friendly stack trace on runtime errors, partial auto complete and some other nifty features. Edit again: I didn't notice that pydev was mentioned in the top post. I hope I brought something else to the table. |
||
|
|
|
|
There is very nice GUI debugger for Python called Winpdb. Try it out.Built on wxWidgets library and multiplatform. |
||
|
|
