vote up 2 vote down star

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

flag

1 Answer

vote up 5 vote down check
import pdb; pdb.set_trace()

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

link|flag
Seems like someone just wanted to ask a question to answer it himself. 7 seconds? – Alex Fort Sep 29 '08 at 19:58
From [the FAQ](stackoverflow.com/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

Your Answer

Get an OpenID
or

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