What do you insert into Python source code to have it break into pdb (when execution gets to that spot)?

link|improve this question

feedback

1 Answer

up vote 14 down vote accepted
import pdb; pdb.set_trace()

See Python: Coding in the Debugger for Beginners for this and more helpful hints.

link|improve this answer
1  
Seems like someone just wanted to ask a question to answer it himself. 7 seconds? – Alex Fort Sep 29 '08 at 19:58
7  
From the FAQ: > It's also perfectly fine to ask and answer your own programming question, but pretend you're on Jeopardy: phrase it in the form of a question. – Daryl Spitzer Sep 29 '08 at 20:07
Then how do you resume? – Nick T Apr 12 at 21:35
Nick, see stackoverflow.com/a/4929267/4766. – Daryl Spitzer Apr 13 at 19:27
feedback

Your Answer

 
or
required, but never shown

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