Please tell me which features you wish your current Python debugger had. I'm creating a new Python IDE/debugger and am looking forward to challenging requests!
|
1
|
|||
|
|
|
I use winpdb and I like it very much. I think a new debugger would need to have at least its features. It has some GUI nuisiances though, so maybe you fix it or take some ideas from it to write your own. Winpdb is a platform independent graphical GPL Python debugger with support for remote debugging over a network, multiple threads, namespace modification, embedded debugging, encrypted communication and is up to 20 times faster than pdb. Features:
|
||
|
|
|
I would love a debugger that could somehow split into two when a thread was created, then I could watch both threads with independent call stacks, etc. If it exists, then I just haven't found it yet. |
||
|
|
|
Forgive me for the shameless functional programming plug, but... The ability to step backwards. |
||
|
|
|
|
The #1 debug feature for me (that my current IDE, Wing, does happen to have) is the ability to drop into a python interpreter and run arbitrary python code when at a breakpoint. Reminds me of using Smalltalk back in the day. Ability to execute code in local scope is incredibly useful, especially in contrast to working in C++ when it can sometimes be a fight to inspect a local variable. |
||||
|

