From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 21 Nov 2020 03:01:05 +0000 (-0800) Subject: bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400) X-Git-Tag: v3.9.1rc1~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c963da269d3778b65a64ff1bd91f8772c210f305;p=thirdparty%2FPython%2Fcpython.git bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400) (cherry picked from commit 6edf06b24a9335a2b0d44634a95e4f5ba0d586d9) Co-authored-by: ArioA --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index c9992ee08b96..046ed39caff5 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -98,7 +98,7 @@ to start a process. These *start methods* are *spawn* The parent process starts a fresh python interpreter process. The child process will only inherit those resources necessary to run - the process objects :meth:`~Process.run` method. In particular, + the process object's :meth:`~Process.run` method. In particular, unnecessary file descriptors and handles from the parent process will not be inherited. Starting a process using this method is rather slow compared to using *fork* or *forkserver*.