Re: python execution path

2005-01-17 Thread Peter Hansen
[EMAIL PROTECTED] wrote: Peter Hansen wrote: The best approach, if it's really intended to be a debugging aid, might be to learn about "pdb" This is more of a what if-ish question I guess. I use pdb fairly regularly, I'm just looking to extend my debugging toolkit. I saw an article recently

Re: python execution path

2005-01-17 Thread qhfgva
Peter Hansen wrote: > Dustin Lee wrote: > > I'm wondering if there is a way to get python to show each line as it > > is executed, sort of like sh -x does for shell programs. Seems like > > this would be a nice debugging aid. > > The best approach, if it's really intended to be a debugging > aid,

Re: python execution path

2005-01-17 Thread Peter Hansen
Dustin Lee wrote: I'm wondering if there is a way to get python to show each line as it is executed, sort of like sh -x does for shell programs. Seems like this would be a nice debugging aid. The best approach, if it's really intended to be a debugging aid, might be to learn about "pdb", starting