diff options
| author | Georg Brandl <georg@python.org> | 2013-10-09 15:51:57 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2013-10-09 15:51:57 +0200 |
| commit | 213ef6eb07d06392f96a73c2d36e291117ab91f7 (patch) | |
| tree | 3ced1ea69b74fff693c290f15d05dae7eb74e2ec | |
| parent | 8d197674039bc3bc2f054095148ddaadec3afc97 (diff) | |
| download | cpython-git-213ef6eb07d06392f96a73c2d36e291117ab91f7.tar.gz | |
Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar Gershuni.
| -rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 0071025e76..8535aede31 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. |
