]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-115652: Fix indentation in the documentation of multiprocessing.get_start_method...
authorDaniel Haag <121057143+denialhaag@users.noreply.github.com>
Mon, 19 Feb 2024 14:26:23 +0000 (15:26 +0100)
committerGitHub <noreply@github.com>
Mon, 19 Feb 2024 14:26:23 +0000 (14:26 +0000)
Doc/library/multiprocessing.rst

index d570d4eb0dae78dadf053d1259eab64028c2b0d6..41ccd5f88186f6bdc6447a2e4a5f35d04ab294bf 100644 (file)
@@ -1084,13 +1084,13 @@ Miscellaneous
    The return value can be ``'fork'``, ``'spawn'``, ``'forkserver'``
    or ``None``.  See :ref:`multiprocessing-start-methods`.
 
-.. versionchanged:: 3.8
+   .. versionadded:: 3.4
 
-   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.8
 
-   .. versionadded:: 3.4
+      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`.
 
 .. function:: set_executable(executable)