#609·viztracer

Doesn't appear to trace into multiprocessing.Process()

Author: rossburtonCreated Jul 16, 2025Updated Jul 17, 2025

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.

Source: gaogaotiantian/viztracer