I would like to run a set of python commands from a file in the PDB debugger.
Related to this, can I set up a file that is automatically run when PDB starts?
I would like to run a set of python commands from a file in
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
make a subclass of
pdb.Pdband put a call to your extra stuff in the__init__alternatively
pdb.Pdb() looks for a
.pdbrcfile, so you may be able to put your stuff in there