]> granicus.if.org Git - python/commitdiff
asyncio doc: changes on the Queue API missed Python 3.4.3 release
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 10 Mar 2015 15:27:54 +0000 (16:27 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 10 Mar 2015 15:27:54 +0000 (16:27 +0100)
Doc/library/asyncio-queue.rst

index c82e08b105be033157d131e3b841873595928d8d..33706726a3db73f4ecf17bc3f5003dd54d94be17 100644 (file)
@@ -33,7 +33,7 @@ Queue
 
    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 @@ Queue
 
       This method is a :ref:`coroutine <coroutine>`.
 
-      .. versionadded:: 3.4.3
+      .. versionadded:: 3.4.4
 
    .. coroutinemethod:: put(item)
 
@@ -117,7 +117,7 @@ Queue
       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 @@ JoinableQueue
 
    Deprecated alias for :class:`Queue`.
 
-   .. deprecated:: 3.4.3
+   .. deprecated:: 3.4.4
 
 
 Exceptions