summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-25 07:20:14 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-25 07:20:14 (GMT)
commita6168f9e0a0ff77910e783df36f5dd4b5dfa7372 (patch)
tree5424d6e36503bda00ee3a63638737a9973b4a4fb /Doc/whatsnew
parent8107290fa186bd5efa2a9c158000fd578d228a6c (diff)
downloadcpython-a6168f9e0a0ff77910e783df36f5dd4b5dfa7372.zip
cpython-a6168f9e0a0ff77910e783df36f5dd4b5dfa7372.tar.gz
cpython-a6168f9e0a0ff77910e783df36f5dd4b5dfa7372.tar.bz2
Queue renaming reversal part 3: move module into place and
change imports and other references. Closes #2925.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/2.6.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst
index 9337c23..a81243a 100644
--- a/Doc/whatsnew/2.6.rst
+++ b/Doc/whatsnew/2.6.rst
@@ -1965,7 +1965,7 @@ details.
used to hold character data.
(Contributed by Achim Gaedke; :issue:`1137`.)
-* The :mod:`queue` module now provides queue classes that retrieve entries
+* The :mod:`Queue` module now provides queue classes that retrieve entries
in different orders. The :class:`PriorityQueue` class stores
queued items in a heap and retrieves them in priority order,
and :class:`LifoQueue` retrieves the most recently added entries first,