有没有办法在Visual Studio可以附加的子进程中设置断点?我尝试过的任何东西都没有成功。下面的示例代码。
child = multiprocessing.Process(target=foo)
def foo():
print "This is the child process."
# Breakpoint goes here.
print "The breakpoint was just hit."
答案 0 :(得分:2)
现在没有人支持。您可以执行Debug-> Attach来处理并附加到生成的流程,但我们目前不支持自动附加。
这是我们最终可能添加的用于改进Django调试的内容,但我建议在pytools.codeplex.com上打开一个功能请求。