I've wrapped a block of code that basically does:
class Parser(multiprocessing.Process):
...
for i in range(0, self.num_processes):
parser = Parser()
parser.start()
The resulting trace shows multiprocessing fork but doesn't show anything from the children.
I've wrapped a block of code that basically does:
The resulting trace shows multiprocessing fork but doesn't show anything from the children.