|
|
|
|
|
by cbarion
4597 days ago
|
|
Here's another library to help debugging: https://pypi.python.org/pypi/globexc. It tells the Python interpreter to write a detailed trace file (including contents of variables) if there is an unhandled exception. It's less powerful than a proper debugger but the trace file is always there after a crash which can be very convenient. |
|