summaryrefslogtreecommitdiffstats
path: root/Doc/library/queue.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 (GMT)
commit35e8c4653455ceeac5b49b369b4c11be6096ea17 (patch)
tree56520e401f31f82834da704af56430a70683bac8 /Doc/library/queue.rst
parent3513358e11df32cc02047e48a9a9a976343ba16c (diff)
downloadcpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.zip
cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.gz
cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.bz2
remove some old versionchanged and versionadded directives
Diffstat (limited to 'Doc/library/queue.rst')
-rw-r--r--Doc/library/queue.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst
index b5ba24d..7cb07c8 100644
--- a/Doc/library/queue.rst
+++ b/Doc/library/queue.rst
@@ -37,8 +37,6 @@ The :mod:`Queue` module defines the following classes and exceptions:
block once this size has been reached, until queue items are consumed. If
*maxsize* is less than or equal to zero, the queue size is infinite.
- .. versionadded:: 2.6
-
.. class:: PriorityQueue(maxsize)
@@ -51,8 +49,6 @@ The :mod:`Queue` module defines the following classes and exceptions:
one returned by ``sorted(list(entries))[0]``). A typical pattern for entries
is a tuple in the form: ``(priority_number, data)``.
- .. versionadded:: 2.6
-
.. exception:: Empty