diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-07-17 05:54:06 +0300 |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-07-17 05:54:06 +0300 |
commit | 877f2e4530a3b9ce87b421f98141f04fa1145c7e (patch) | |
tree | c5ae2d9c16cee943424444f481d7ab5ac453ba3d | |
parent | 304f0f952da3c2f1d354b1701aa5ad61b53ff179 (diff) | |
download | cpython-git-877f2e4530a3b9ce87b421f98141f04fa1145c7e.tar.gz |
Issue #12574: correct capitalization of the Queue module. Patch by Rafe Kettler
-rw-r--r-- | Doc/library/queue.rst | 4 | ||||
-rw-r--r-- | Misc/ACKS | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index a471bb09a1..654f07a7ac 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -1,4 +1,4 @@ -:mod:`queue` --- A synchronized queue class +:mod:`Queue` --- A synchronized queue class =========================================== .. module:: Queue @@ -26,7 +26,7 @@ lowest valued entry is retrieved first. .. seealso:: - Latest version of the `queue module Python source code + Latest version of the `Queue module Python source code <http://svn.python.org/view/python/branches/release27-maint/Lib/Queue.py?view=markup>`_. The :mod:`Queue` module defines the following classes and exceptions: @@ -432,6 +432,7 @@ Robert Kern Randall Kern Magnus Kessler Lawrence Kesteloot +Rafe Kettler Vivek Khera Akira Kitada Mads Kiilerich |