1

Visual Studio をアタッチできる子プロセスにブレークポイントを設定する方法はありますか? 私が試したもので成功したことはありません。以下のコード例。

child = multiprocessing.Process(target=foo)

def foo():
    print "This is the child process."
    # Breakpoint goes here.
    print "The breakpoint was just hit."
4

1 に答える 1