Tagged Questions
1
vote
1answer
190 views
No readline support while using pdb.set_trace()
I have an application running Python 2.6.X. Starting the Python interpreter in interactive mode (with or without using virtualenv): readline support working (command history).
Starting my application ...
3
votes
2answers
169 views
Python debugger (pdb) stopped handlying up/down arrows, shows ^[[A instead
I am using python 2.6 in a virtualenv on an Ubuntu Linux 11.04 (natty) machine. I have this code in my (django) python code:
import pdb ; pdb.set_trace()
in order to launch the python debugger ...