From: Victor Stinner Date: Tue, 10 Mar 2015 15:27:54 +0000 (+0100) Subject: asyncio doc: changes on the Queue API missed Python 3.4.3 release X-Git-Tag: v3.5.0a3~211^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84c717dd9ed154fd4a2c342c228e707ecde33d4e;p=thirdparty%2FPython%2Fcpython.git asyncio doc: changes on the Queue API missed Python 3.4.3 release --- diff --git a/Doc/library/asyncio-queue.rst b/Doc/library/asyncio-queue.rst index c82e08b105be..33706726a3db 100644 --- a/Doc/library/asyncio-queue.rst +++ b/Doc/library/asyncio-queue.rst @@ -33,7 +33,7 @@ Queue This class is :ref:`not thread safe `. - .. 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 `. - .. 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