vote up 2 vote down star
1

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!

flag
The ability to read my mind and debug the code for me :) – Mehrdad Afshari Mar 1 at 20:13

4 Answers

vote up 4 vote down

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:

  • GPL license. Winpdb is Free Software.
  • Compatible with CPython 2.3 through 2.6 and Python 3000
  • Compatible with wxPython 2.6 through 2.8
  • Platform independent, and tested on Ubuntu Gutsy and Windows XP.
  • User Interfaces: rpdb2 is console based, while winpdb requires wxPython 2.6 or later.

Screenshot

link|flag
Last time I try winpdb (about half years ago), winpdb has all feature I want. But I feel its user interface need refine (I am not talking beautiful looking. What I mean is about hotkey, layout, default dialog position, etc.) – kcwu May 14 at 18:00
vote up 3 vote down

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.

link|flag
well, check my answer – nosklo Mar 1 at 20:50
vote up 5 vote down

Forgive me for the shameless functional programming plug, but...

The ability to step backwards.

link|flag
vote up 2 vote down

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.

link|flag
I'd love that. Wing IDE is really impressive. Wish it was free-er. – Seun Osewa Mar 1 at 20:28
That is what PDB allows you to do anyway, so its nothing extra Wing is giving you. Wing is a good tool, of course. – ironfroggy Mar 2 at 0:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.