diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-10 15:27:54 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-10 15:27:54 (GMT) |
commit | 84c717dd9ed154fd4a2c342c228e707ecde33d4e (patch) | |
tree | 5fb23545328766090f4b18b1c9a8b16390b79f02 /Doc | |
parent | 77a6b20a3590f58b6f715eec7f099360c5dba516 (diff) | |
download | cpython-84c717dd9ed154fd4a2c342c228e707ecde33d4e.zip cpython-84c717dd9ed154fd4a2c342c228e707ecde33d4e.tar.gz cpython-84c717dd9ed154fd4a2c342c228e707ecde33d4e.tar.bz2 |
asyncio doc: changes on the Queue API missed Python 3.4.3 release
Diffstat (limited to '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 c82e08b..3370672 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 |