Commit d5ff5b2e authored by Jesse Noller's avatar Jesse Noller

Fix typo in multiprocessing doc, cancel_join_thread was missing _thread

parent ebcd0ced
...@@ -1861,7 +1861,7 @@ Joining processes that use queues ...@@ -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 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 terminating until all the buffered items are fed by the "feeder" thread to
the underlying pipe. (The child process can call the 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 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 items which have been put on the queue will eventually be removed before the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment