Visual Studio をアタッチできる子プロセスにブレークポイントを設定する方法はありますか? 私が試したもので成功したことはありません。以下のコード例。
child = multiprocessing.Process(target=foo)
def foo():
print "This is the child process."
# Breakpoint goes here.
print "The breakpoint was just hit."
Visual Studio をアタッチできる子プロセスにブレークポイントを設定する方法はありますか? 私が試したもので成功したことはありません。以下のコード例。
child = multiprocessing.Process(target=foo)
def foo():
print "This is the child process."
# Breakpoint goes here.
print "The breakpoint was just hit."