Version 0.10.5
-
Fixed processing to also work with spawn (#46)
Since Python 3.8+, the start method used on macOS was changed fromfork()
tospawn()
. This had the side-effect of all invocations ofprocess_individual()
wouldn't inherit the config context and thus would fail to detect properly, especially when using backports. But it was fixed by reestablishing the config context if "spawn" is used as start method, which means it works withfork()
andspawn()
alike. -
Fixed symbol
Y.z
detection with module name fromimport X as Y
, like:
import multiprocessing as mp
mp.get_start_method()
Thanks to @adamjstewart for reporting #46!