Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.8] bpo-33725, multiprocessing doc: rephase warning against fork on macOS (GH-13841) #13849

Merged
merged 1 commit into from Jun 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions Doc/library/multiprocessing.rst
Expand Up @@ -126,8 +126,9 @@ to start a process. These *start methods* are

.. versionchanged:: 3.8

On macOS, *spawn* start method is now the default: *fork* start method is no
longer reliable on macOS, see :issue:`33725`.
On macOS, the *spawn* start method is now the default. The *fork* start
method should be considered unsafe as it can lead to crashes of the
subprocess. See :issue:`33725`.

.. versionchanged:: 3.4
*spawn* added on all unix platforms, and *forkserver* added for
Expand Down