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).