Python Debugging Tips

From Qt Wiki
Revision as of 16:30, 14 January 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Python Debugging Tips

This Wiki page lists some useful tips for analyzing unexpected behaviors in Python programs.

Using Python trace module

If your program is crashing and no information is being shown about what happened (as usually is the case with a segfault), then the Python module trace can be useful to point which line of the program is causing the crash or at least the line where the program stopped. Just add “-m trace —trace” parameters to the Python executable and every line being executed will be printed on the screen. Supposing your program is called ‘script.py’, one way to use trace is shown below:

Keep in mind that this will make your program run slower, as the standard output will show everything being executed at the time. For more information about the trace module, you can consult its official documentation here. [docs.python.org]

Categories: