使用pdb运行python时,例如
python -m pdb myscript.py some_arg another_arg
我不希望它问我该怎么做。我希望它立即“继续”。有没有办法做到这一点?有没有一种方法可以编辑〜/ .pdbrc 中的全局pdb配置?
答案 0 :(得分:0)
python -m pdb -c continue myscript.py some_argument another_argument
来自pdb文档:
pdb.py 接受一个
-c
选项,该选项执行命令的方式就像在 .pdbrc 文件中给出的一样,请参见Debugger Commands。