]> granicus.if.org Git - python/commitdiff
Fix closes Issue11155 - Correct the multiprocessing.Queue.put's arg (replace 'item...
authorSenthil Kumaran <senthil@uthcode.com>
Mon, 5 Sep 2011 16:21:30 +0000 (00:21 +0800)
committerSenthil Kumaran <senthil@uthcode.com>
Mon, 5 Sep 2011 16:21:30 +0000 (00:21 +0800)
Doc/library/multiprocessing.rst

index d95b33c42fa2928696ba54737e5a52a1ca687cea..78e3e951b4ea30534878cd9d7fab8dc332955ecd 100644 (file)
@@ -552,9 +552,9 @@ For an example of the usage of queues for interprocess communication see
       Return ``True`` if the queue is full, ``False`` otherwise.  Because of
       multithreading/multiprocessing semantics, this is not reliable.
 
-   .. method:: put(item[, block[, timeout]])
+   .. method:: put(obj[, block[, timeout]])
 
-      Put item into the queue.  If the optional argument *block* is ``True``
+      Put obj into the queue.  If the optional argument *block* is ``True``
       (the default) and *timeout* is ``None`` (the default), block if necessary until
       a free slot is available.  If *timeout* is a positive number, it blocks at
       most *timeout* seconds and raises the :exc:`queue.Full` exception if no
@@ -563,9 +563,9 @@ For an example of the usage of queues for interprocess communication see
       available, else raise the :exc:`queue.Full` exception (*timeout* is
       ignored in that case).
 
-   .. method:: put_nowait(item)
+   .. method:: put_nowait(obj)
 
-      Equivalent to ``put(item, False)``.
+      Equivalent to ``put(obj, False)``.
 
    .. method:: get([block[, timeout]])