Skip to content

Commit

Permalink
[docs] Update documentation for multiprocessing.get_start_method (G…
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders authored Sep 23, 2021
1 parent 8492b72 commit af90b54
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,13 @@ Miscellaneous

The return value can be ``'fork'``, ``'spawn'``, ``'forkserver'``
or ``None``. ``'fork'`` is the default on Unix, while ``'spawn'`` is
the default on Windows.
the default on Windows and macOS.

.. versionchanged:: 3.8

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`.

.. versionadded:: 3.4

Expand Down

0 comments on commit af90b54

Please sign in to comment.