This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients ezwelty, ned.deily, ronaldoussoren
Date 2018-03-23.12:19:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
I cannot reproduce the problem on macOS 10.13.3 with python 3.6 (but haven't spent much time on this).

The combination of GUI code with multiprocessing is a known source of problems on macOS, the system libraries are hostile to that.

Changing the start method from "fork" to "spawn" or "forkserver" should help with this, using multiprocessing.set_start_method(). This should be changed before doing anything that might Apple system frameworks related to GUIs.
History
Date User Action Args
2018-03-23 12:19:37ronaldoussorensetrecipients: + ronaldoussoren, ned.deily, ezwelty
2018-03-23 12:19:37ronaldoussorensetmessageid: <[email protected]>
2018-03-23 12:19:37ronaldoussorenlinkissue33111 messages
2018-03-23 12:19:37ronaldoussorencreate