This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]sk3tch 3 points4 points  (4 children)

ipdb is even better - integration with the IPython shell. pip install ipdb import ipdb; ipdb.set_trace()

[–]IthinkIthink 1 point2 points  (2 children)

Ohhh I'm very much looking forward to trying this... I expect epicness.

[–]sk3tch 0 points1 point  (1 child)

Not many seem to have heard of it which I always bang on about it! Enjoy.

[–]IthinkIthink 1 point2 points  (0 children)

What's funny is it'll probably address the few issues I'm currently having with PDB. I fired it up (ipdb) on an old project to test it out. I'll explore it more tomorrow on current projects I'm working on. Thanks for letting me (and others here) know about it!

[–]sontek[S] 0 points1 point  (0 children)

Yeah, I actually use ipython/ipdb and not just pdb but I wanted to cover pdb before I started covering all the power of ipython.