From: Benjamin Peterson Date: Thu, 2 Jul 2015 03:36:21 +0000 (-0500) Subject: remove stray '(' (closes #24547) X-Git-Tag: v3.5.0b3~20^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ef80587f01af27427fc1fcc05d8fd1726edd23d;p=thirdparty%2FPython%2Fcpython.git remove stray '(' (closes #24547) --- diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 08cd412b0fe6..5176b9a7f69c 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1123,7 +1123,7 @@ multiprocessing .. _whatsnew-multiprocessing-no-fork: On Unix two new :ref:`start methods `, -(``spawn`` and ``forkserver``, have been added for starting processes using +``spawn`` and ``forkserver``, have been added for starting processes using :mod:`multiprocessing`. These make the mixing of processes with threads more robust, and the ``spawn`` method matches the semantics that multiprocessing has always used on Windows. New function