python:如何调试多进程? (使用 eclipse+pydev)
我已经看到了有关该主题的几个问题,但没有得到完整的答案...
我的代码基本上是:
from multiprocessing import Process
p = Process(target=f).start()
p.join()
def f():
print 'break!'
我想在 print
上放置一个断点。我正在使用 pydev+eclipse (在 Ubuntu 上)。
I've seen a couple of questions on the topic but I didn't get a full answer...
My code is basically:
from multiprocessing import Process
p = Process(target=f).start()
p.join()
def f():
print 'break!'
And I want to put a breakpoint on the print
. I'm using pydev+eclipse (on Ubuntu).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于新进程本身不受 PyDev 控制,因此您需要通过远程调试工具手动让 PyDev 调试器知道。
http://pydev.org/manual_adv_remote_debugger.html
使用 pydevd.set_trace() - 请注意您的断点获胜不起作用(不确定这是否改变了最近的 PyDev 版本),但您需要在代码中手动输入 set_trace() 命令。
Because the new process itself is not controlled by PyDev, you need to make PyDev debugger manually aware of through Remote Debugging facilities.
http://pydev.org/manual_adv_remote_debugger.html
Use pydevd.set_trace() - notice that your breakpoints won't work (not sure if this has changed recent PyDev versions), but you need to manually enter set_trace() command to your code.