summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-10-03 15:55:12 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-10-03 15:55:12 (GMT)
commit7280561b5b2363c50797fbec301fefcd1e5a8040 (patch)
tree8a12d389d4d9b99ceb79ce72ff5281b6f8b34b60 /Doc/library
parent32562d7da388819f46b91feeb74915bc0ad4686a (diff)
downloadcpython-7280561b5b2363c50797fbec301fefcd1e5a8040.zip
cpython-7280561b5b2363c50797fbec301fefcd1e5a8040.tar.gz
cpython-7280561b5b2363c50797fbec301fefcd1e5a8040.tar.bz2
Fix a few typo/grammar issues in the multiprocessing docs.
Reported by Scott Hinton on docs@.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/multiprocessing.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index e568e68..e227556 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -842,7 +842,7 @@ Miscellaneous
Return list of all live children of the current process.
- Calling this has the side affect of "joining" any processes which have
+ Calling this has the side effect of "joining" any processes which have
already finished.
.. function:: cpu_count()
@@ -2464,7 +2464,7 @@ Joining processes that use queues
items which have been put on the queue will eventually be removed before the
process is joined. Otherwise you cannot be sure that processes which have
put items on the queue will terminate. Remember also that non-daemonic
- processes will be automatically be joined.
+ processes will be joined automatically.
An example which will deadlock is the following::
@@ -2480,7 +2480,7 @@ Joining processes that use queues
p.join() # this deadlocks
obj = queue.get()
- A fix here would be to swap the last two lines round (or simply remove the
+ A fix here would be to swap the last two lines (or simply remove the
``p.join()`` line).
Explicitly pass resources to child processes