[Python-checkins] r66244 - python/trunk/Doc/library/multiprocessing.rst

jesse.noller python-checkins at python.org
Sat Sep 6 03:20:11 CEST 2008


Author: jesse.noller
Date: Sat Sep  6 03:20:11 2008
New Revision: 66244

Log:
Fix typo in multiprocessing doc, cancel_join_thread was missing _thread


Modified:
   python/trunk/Doc/library/multiprocessing.rst

Modified: python/trunk/Doc/library/multiprocessing.rst
==============================================================================
--- python/trunk/Doc/library/multiprocessing.rst	(original)
+++ python/trunk/Doc/library/multiprocessing.rst	Sat Sep  6 03:20:11 2008
@@ -1861,7 +1861,7 @@
     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


More information about the Python-checkins mailing list