Re: debug 'continue' does not appear to work right

2005-12-13 Thread newsposter
Ok, thanks. I see what the problem is. I am working on an application which requires Python 2.1, but I also installed Python 2.4.2. It appears that my path for the command-lines is setup with 2.1 first. Thanks, Chris -- http://mail.python.org/mailman/listinfo/python-list

Re: debug 'continue' does not appear to work right

2005-12-12 Thread David Wahler
[EMAIL PROTECTED] wrote: > When I enter 'c' at the (Pdb) prompt it just goes to the next line, and > doesn't "continue" as it should. [...] > > Here's the sample output: > > S:\tmp>python epdb1.py > --Return-- > > c:\python21\lib\pdb.py(895)set_trace()->None > -> Pdb().set_trace() [...] Works for

Re: debug 'continue' does not appear to work right

2005-12-12 Thread newsposter
I was running the above from the command-line, but when I run the program within IDLE, 'c', continue, works as it should. -Chris -- http://mail.python.org/mailman/listinfo/python-list

debug 'continue' does not appear to work right

2005-12-12 Thread newsposter
When I enter 'c' at the (Pdb) prompt it just goes to the next line, and doesn't "continue" as it should. Here's the sample program: # epdb1.py -- experiment with the Python debugger, pdb import pdb a = "aaa" pdb.set_trace() b = "bbb" c = "ccc" final = a + b + c print final Here's the sample outp