From: Georg Brandl Date: Wed, 9 Oct 2013 13:51:57 +0000 (+0200) Subject: Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar Gershuni. X-Git-Tag: v3.4.0a4~196 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=213ef6eb07d06392f96a73c2d36e291117ab91f7;p=thirdparty%2FPython%2Fcpython.git Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar Gershuni. --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 0071025e762f..8535aede31af 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -126,7 +126,7 @@ to start a process. These *start methods* are *forkserver* When the program starts and selects the *forkserver* start method, a server process is started. From then on, whenever a new process - is need the parent process connects to the server and requests + is needed, the parent process connects to the server and requests that it fork a new process. The fork server process is single threaded so it is safe for it to use :func:`os.fork`. No unnecessary resources are inherited.