Skip to content Skip to sidebar Skip to footer

Multiprocessing Help. Brokenprocesspool Error

I'm trying to learn the basics of multi-processing in python, and found the following example online which I wanted to practice with. import concurrent.futures import time def do_

Solution 1:

You might want to check if the future is done already:

if f1.done():
    print(f1.result())

Post a Comment for "Multiprocessing Help. Brokenprocesspool Error"