Would you pls tell me a tool to step debug python program?

Varghjärta varghjarta at gmail.com
Mon Sep 12 06:32:47 EDT 2005


I myself used/use "Komodo" for all my developing, it's the best and
easiest to use graphical IDE for python i've found thus far.


On 12/09/05, Franz Steinhaeusler <franz.steinhaeusler at gmx.at> wrote:
> On 12 Sep 2005 00:12:29 -0700, "Johnny Lee" <johnnyandfiona at hotmail.com>
> wrote:
> 
> >Hi,
> >   I've met a problem to understand the code at hand. And I wonder
> >whether there is any useful tools to provide me a way of step debug?
> >Just like the F10 in VC...
> >
> >Thanks for your help.
> >
> 
> What about the "new" winpdb debugger.
> It looks really nice.
> 
> http://sourceforge.net/projects/winpdb/
> http://www.digitalpeers.com/pythondebugger/
> 
> create a shortcut like:
> C:\Python24\python.exe C:\Python24\Lib\site-packages\winpdb.py -t
> 
> the -t switch is important, otherwise it starts in an
> encrypted mode".
> 
> I have patched winpdb.py (about Line420):
> 
> AC_CHAR = "\t"
> AC_EXIT = "Alt-X"
> AC_BREAK = "F4"
> AC_GO = "F5"
> AC_NEXT = "F10"
> AC_STEP = "F11"
> AC_GOTO = "Ctrl+F10"
> AC_TOOGLE = "F9"
> AC_RETURN = "Shift+F11"
> 
> to accomodate the shortcuts to VC Debugger.
> 
> 
> --
> Franz Steinhaeusler
> --
> http://mail.python.org/mailman/listinfo/python-list
>



More information about the Python-list mailing list