]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[docs] Update documentation for `multiprocessing.get_start_method` (GH-18170) (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 23 Sep 2021 21:38:44 +0000 (14:38 -0700)
committerPablo Galindo <pablogsal@gmail.com>
Wed, 29 Sep 2021 11:30:17 +0000 (12:30 +0100)
(cherry picked from commit af90b5498b8c6acd67b50fdad007d26dfd1c5823)

Co-authored-by: Sam Sneddon <me@gsnedders.com>
Doc/library/multiprocessing.rst

index 945ac42b2fbb37992e4fda0370e6d6eb8dabbc55..fbb3f192f7d6ed17ae74ac25b0f4722d1e323327 100644 (file)
@@ -1029,7 +1029,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