diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-10 16:29:31 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-10 16:29:31 +0100 |
commit | fb581d9154c1df095ab9fbd1690fbc2f77f44530 (patch) | |
tree | 41d6e87671c60a40f47a862a59fc328e54b3762d | |
parent | 55f1949225b58e7a7b80617f2fc4fd890e3a9844 (diff) | |
parent | 84c717dd9ed154fd4a2c342c228e707ecde33d4e (diff) | |
download | cpython-git-fb581d9154c1df095ab9fbd1690fbc2f77f44530.tar.gz |
Merge 3.4 (asyncio doc)
-rw-r--r-- | 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 index c82e08b105..33706726a3 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 <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 |