]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in multiprocessing doc, cancel_join_thread was missing _thread
authorJesse Noller <jnoller@gmail.com>
Sat, 6 Sep 2008 01:20:11 +0000 (01:20 +0000)
committerJesse Noller <jnoller@gmail.com>
Sat, 6 Sep 2008 01:20:11 +0000 (01:20 +0000)
Doc/library/multiprocessing.rst

index f9737150a745be297e8fed475bc3c3c84562e8e4..bb6e846e9dd33f9eabe37030a613568195470c13 100644 (file)
@@ -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