Pretty much what the title says, I would like to be able to connect to a python process running under paster or uwsgi and utilize pdb functionality.
问问题
1716 次
使用winpdb,您可以像这样附加到正在运行的进程:
插入
import rpdb2; rpdb2.start_embedded_debugger('mypassword')
在你的脚本里面。