diff options
author | Jesse Noller <jnoller@gmail.com> | 2008-09-06 01:20:11 (GMT) |
---|---|---|
committer | Jesse Noller <jnoller@gmail.com> | 2008-09-06 01:20:11 (GMT) |
commit | d5ff5b2ec4bec4e7177ba75ca16e4368414f5d56 (patch) | |
tree | ac4cd640da7a6b5abedd2c2ba3e106e8b1a10b5b | |
parent | ebcd0ced14388d5859e4c57e9916a3f18e35e9c2 (diff) | |
download | cpython-d5ff5b2ec4bec4e7177ba75ca16e4368414f5d56.zip cpython-d5ff5b2ec4bec4e7177ba75ca16e4368414f5d56.tar.gz cpython-d5ff5b2ec4bec4e7177ba75ca16e4368414f5d56.tar.bz2 |
Fix typo in multiprocessing doc, cancel_join_thread was missing _thread
-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 f973715..bb6e846 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1861,7 +1861,7 @@ Joining processes that use queues Bear in mind that a process that has put items in a queue will wait before terminating until all the buffered items are fed by the "feeder" thread to the underlying pipe. (The child process can call the - :meth:`Queue.cancel_join` method of the queue to avoid this behaviour.) + :meth:`Queue.cancel_join_thread` method of the queue to avoid this behaviour.) This means that whenever you use a queue you need to make sure that all items which have been put on the queue will eventually be removed before the |