Closed as not planned
Description
Bug report
Bug description:
Minimum working example of issue:
import numpy as np
import concurrent.futures
with concurrent.futures.ProcessPoolExecutor() as executor:
executor.map(print, np.arange(1000000))
Each time this is run it seems to hang at a different iteration with no apparent CPU or memory usage. May be related to #74028
CPython versions tested on:
3.9
Operating systems tested on:
Linux