[Python-checkins] cpython (3.4): asyncio doc: changes on the Queue API missed Python 3.4.3 release

victor.stinner python-checkins at python.org
Tue Mar 10 16:29:38 CET 2015


https://hg.python.org/cpython/rev/12a857e173b7
changeset:   94928:12a857e173b7
branch:      3.4
parent:      94926:64c0b4aead0f
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Mar 10 16:27:54 2015 +0100
summary:
  asyncio doc: changes on the Queue API missed Python 3.4.3 release

files:
  Doc/library/asyncio-queue.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/library/asyncio-queue.rst b/Doc/library/asyncio-queue.rst
--- a/Doc/library/asyncio-queue.rst
+++ b/Doc/library/asyncio-queue.rst
@@ -33,7 +33,7 @@
 
    This class is :ref:`not thread safe <asyncio-multithreading>`.
 
-   .. versionchanged:: 3.4.3
+   .. versionchanged:: 3.4.4
       New :meth:`join` and :meth:`task_done` methods.
 
    .. method:: empty()
@@ -79,7 +79,7 @@
 
       This method is a :ref:`coroutine <coroutine>`.
 
-      .. versionadded:: 3.4.3
+      .. versionadded:: 3.4.4
 
    .. coroutinemethod:: put(item)
 
@@ -117,7 +117,7 @@
       Raises :exc:`ValueError` if called more times than there were items
       placed in the queue.
 
-      .. versionadded:: 3.4.3
+      .. versionadded:: 3.4.4
 
    .. attribute:: maxsize
 
@@ -151,7 +151,7 @@
 
    Deprecated alias for :class:`Queue`.
 
-   .. deprecated:: 3.4.3
+   .. deprecated:: 3.4.4
 
 
 Exceptions

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list