summaryrefslogtreecommitdiff
path: root/Doc/library/queue.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 +0000
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 +0000
commitaf777708fcebf6a14796a4800ea19e1021e61068 (patch)
treefd864f51711f9a5ff563358c3dff5d3c664cddae /Doc/library/queue.rst
parentf2cb3aa6312edc205c9c155f114cacf58b8634f3 (diff)
downloadcpython-af777708fcebf6a14796a4800ea19e1021e61068.tar.gz
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/queue.rst')
-rw-r--r--Doc/library/queue.rst9
1 files changed, 0 insertions, 9 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst
index c7b65fdd56..c183860331 100644
--- a/Doc/library/queue.rst
+++ b/Doc/library/queue.rst
@@ -74,9 +74,6 @@ See the source code for details. The public methods are:
immediately available, else raise the :exc:`Full` exception (*timeout* is
ignored in that case).
- .. versionadded:: 2.3
- The *timeout* parameter.
-
.. method:: Queue.put_nowait(item)
@@ -92,9 +89,6 @@ See the source code for details. The public methods are:
Otherwise (*block* is false), return an item if one is immediately available,
else raise the :exc:`Empty` exception (*timeout* is ignored in that case).
- .. versionadded:: 2.3
- The *timeout* parameter.
-
.. method:: Queue.get_nowait()
@@ -117,8 +111,6 @@ fully processed by daemon consumer threads.
Raises a :exc:`ValueError` if called more times than there were items placed in
the queue.
- .. versionadded:: 2.5
-
.. method:: Queue.join()
@@ -129,7 +121,6 @@ fully processed by daemon consumer threads.
indicate that the item was retrieved and all work on it is complete. When the
count of unfinished tasks drops to zero, join() unblocks.
- .. versionadded:: 2.5
Example of how to wait for enqueued tasks to be completed::