2
votes
1answer
178 views

IPython - set a breakpoint in imported file

One can set a breakpoint in IPython + pdb like this: run -d -b 150 file1.py That would break the execution of file1.py at line 150. Now, how can one set a break point in a file that is being ...
1
vote
1answer
316 views

Stepping into a function in IPython

Is there a way to step into the first line of a function in ipython. I imagine something that would look like: %step foo(1, 2) which runs ipdb and sets a breakpoint at the first line of foo. If I ...
1
vote
1answer
953 views

ipython debugger: full traceback on interactive pdb?

I recently switched from ipython0.10 to ipython0.11. In ipython0.11, I only see a small snippet of the full traceback when the python debugger engages (i.e. using %pdb), whereas in ipython0.10 I'd ...