Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar Gershuni.

This commit is contained in:
Georg Brandl 2013-10-09 15:51:57 +02:00
parent 8d19767403
commit 213ef6eb07
1 changed files with 1 additions and 1 deletions

View File

@ -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.