In the perl debugger, if you repeatedly list segments of code taking you away from the current line, you can return to the current line by entering the command . (dot).

I have not been able to find anything comparable using the python PDB module. If I list myself away from the current line and want to view it again, it seems I have to either remember the line number that was currently executing (unlikely for me) or execute a statement (often undesirable).

Am I missing something?

Thanks

link|improve this question

40% accept rate
feedback

2 Answers

Well, I don't think there's a command similar to . in perl debugger, but you can always find the current line using the where / w command. That will show you both the current (contextual) frame as well as the most recent frame, which I believe is where the debugger was triggered.

link|improve this answer
I didn't think of using "where' to get back. It's less than ideal, but certainly better than nothing. Thanks! – zenzic Mar 2 '11 at 16:21
feedback

Maybe you should try out ipython or ipdb, a wrapper for pdb.

ipdb gives you numbered lines, colorized syntax, tab completion and more.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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