Tagged Questions
7
votes
5answers
199 views
Step-by-step debugging with IPython
From what I have read, there are two ways to debug code in Python:
With a traditional debugger such as pdb or ipdb. This supports commands such as c for continue, n for step-over, s for step-into ...
0
votes
0answers
80 views
django debugging with emacs, have to rerun pdb after edit
Django debugging with Emacs
shows how to run pdb in emacs.
It works great but I have to kill pdb process and rerun it after changing source code because it won't recognize the change unless I ...
3
votes
1answer
457 views
Emacs python-mode: Keyboard shortcuts for pdb step-by-step debugging
I was wondering if there is a way to associate:
n RET (next)
p RET (previous)
c RET (continue)
C-x SPC RET (set/clear breakpoint)
with function keys F1-F12 or other keyboard shortcuts. The idea is ...
1
vote
1answer
152 views
How to specifiy path when using pdb in emacs?
I am trying to use pdb in emacs. I need to change path to PYTHONPATH=lib. But when I typed
Run pdb (like this): PYTHONPATH=lib pdb ./pychess.
Emacs gives me an error saying the file PYTHONPATH=lib ...
