summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDaniel Haag <121057143+denialhaag@users.noreply.github.com>2024-02-19 14:26:23 (GMT)
committerGitHub <noreply@github.com>2024-02-19 14:26:23 (GMT)
commitd504968983c5cd5ddbdf73ccd3693ffb89e7952f (patch)
treed90b2bb9c70d4bb8c2b56c2268306b2c358cec01 /Doc
parentaa8c1a0d1626b5965c2f3a1d5af15acbb110eac1 (diff)
downloadcpython-d504968983c5cd5ddbdf73ccd3693ffb89e7952f.zip
cpython-d504968983c5cd5ddbdf73ccd3693ffb89e7952f.tar.gz
cpython-d504968983c5cd5ddbdf73ccd3693ffb89e7952f.tar.bz2
gh-115652: Fix indentation in the documentation of multiprocessing.get_start_method (GH-115658)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/multiprocessing.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index d570d4e..41ccd5f 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -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)