What are your best tips for debugging Python?
Please don't just list a particular debugger without saying what it can actually do.
Related
- What are good ways to make my Python code run first time? - This discusses minimizing errors
|
What are your best tips for debugging Python? Please don't just list a particular debugger without saying what it can actually do. Related
|
||||
|
|
|
You can use the pdb module, insert
To continue execution use It is possible to execute arbitrary Python expressions using pdb. For example, if you find a mistake, you can correct the code, then type a type expression to have the same effect in the running code ipdb is a version of pdb for IPython. It allows the use of pdb with all the IPython features including tab completion. It is also possible to set pdb to automatically run on an uncaught exception. Pydb was written to be an enhanced version of Pdb. Benefits? |
|||||||
|
|
|
Logging Python already has an excellent built-in logging module. You may want to use the logging template here. The logging module lets you specify a level of importance; during debugging you can log everything, while during normal operation you might only log critical things. You can switch things off and on. Most people just use basic print statements to debug, and then remove the print statements. It's better to leave them in, but disable them; then, when you have another bug, you can just re-enable everything and look your logs over. This can be the best possible way to debug programs that need to do things quickly, such as networking programs that need to respond before the other end of the network connection times out and goes away. You might not have much time to single-step a debugger; but you can just let your code run, and log everything, then pore over the logs and figure out what's really happening. EDIT: The original URL for the templates was: http://aymanh.com/python-debugging-techniques This page is missing so I replaced it with a reference to the snapshot saved at archive.org: http://web.archive.org/web/20120819135307/http://aymanh.com/python-debugging-techniques In case it disappears again, here are the templates I mentioned. This is code taken from the blog; I didn't write it.
And here is his explanation of how to use the above. Again, I don't get the credit for this: By default, the logging module prints critical, error and warning messages. To change this so that all levels are printed, use:
To send log messages to a file called debug.log, use:
|
|||||||
|
|
If you are using pdb, you can define aliases for shortcuts. I use these:
|
|||||||||||
|
|
http://pypi.python.org/pypi/pudb, a full-screen, console-based Python debugger.
Nice for debugging standalone scripts, just run
|
|||||
|
|
It is possible to print what Python lines are executed (thanks Geo!). This has any number of applications, for example, you could modify it to check when particular functions are called or add something like ## make it only track particular lines. code.interact takes you into a interactive console
If you want to be able to easily access your console history look at: "Can I have a history mechanism like in the shell?" (will have to look down for it). Auto-complete can be enabled for the interpreter. |
||||
|
|
|
|
|||||||||||||||
|
|
ipdb is like pdb, with the awesomeness of ipython. |
||||
|
PyDev PyDev has a pretty good interactive debugger. It has watch expressions, hover-to-evaluate, thread and stack listings and (almost) all the usual amenities you expect from a modern visual debugger. You can even attach to a running process and do remote debugging. Like other visual debuggers, though, I find it useful mostly for simple problems, or for very complicated problems after I've tried everything else. I still do most of the heavy lifting with logging. |
||||
|
the obvious way to debug a script
if you don't know exactly where that script is
|
||||
|
|
|
Winpdb is very nice, and contrary to its name it's completely cross-platform. It's got a very nice prompt-based and GUI debugger, and supports remote debugging. |
|||||||
|
|
In Vim, I have these three bindings:
I use Finally, the |
||||
|
|
|
Defining useful repr() methods for your classes (so you can see what an object is) and using repr() or "%r" % (...) or "...{0!r}..".format(...) in your debug messages/logs is IMHO a key to efficient debugging. Also, the debuggers mentioned in other answers will make use of the repr() methods. |
||||
|
|
|
Getting a stack trace from a running Python application There are several tricks here. These include
|
||||
|
|
|
If you are familiar with Visual Studio, Python Tools for Visual Studio is what you look for.
|
||||
|
|