]> granicus.if.org Git - python/commitdiff
bpo-33725, multiprocessing doc: rephase warning against fork on macOS (GH-13841)
authorVictor Stinner <vstinner@redhat.com>
Wed, 5 Jun 2019 19:59:33 +0000 (21:59 +0200)
committerGitHub <noreply@github.com>
Wed, 5 Jun 2019 19:59:33 +0000 (21:59 +0200)
Co-Authored-By: Barry Warsaw <barry@python.org>
Doc/library/multiprocessing.rst

index 6c07124f97907afe161584471ebc68c403e2fa55..d8182feab963a1b6a929f18bcad400e04e911119 100644 (file)
@@ -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