Skip to content

Version 0.10.5

Compare
Choose a tag to compare
@netromdk netromdk released this 28 Sep 18:47
· 489 commits to master since this release
2e6c9f8
  • Fixed processing to also work with spawn (#46)
    Since Python 3.8+, the start method used on macOS was changed from fork() to spawn(). This had the side-effect of all invocations of process_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 with fork() and spawn() alike.

  • Fixed symbol Y.z detection with module name from import X as Y, like:

import multiprocessing as mp
mp.get_start_method()

Thanks to @adamjstewart for reporting #46!