I saw a couple of questions on this topic, but I did not get a complete answer ...
My code is basically:
from multiprocessing import Process p = Process(target=f).start() p.join() def f(): print 'break!'
And I want to set a breakpoint on print . I am using pydev + eclipse (on Ubuntu).
source share