summaryrefslogtreecommitdiff
path: root/Doc/library/queue.rst
diff options
context:
space:
mode:
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::