Commit 84c717dd authored by Victor Stinner's avatar Victor Stinner

asyncio doc: changes on the Queue API missed Python 3.4.3 release

parent 77a6b20a
...@@ -33,7 +33,7 @@ Queue ...@@ -33,7 +33,7 @@ Queue
This class is :ref:`not thread safe <asyncio-multithreading>`. 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. New :meth:`join` and :meth:`task_done` methods.
.. method:: empty() .. method:: empty()
...@@ -79,7 +79,7 @@ Queue ...@@ -79,7 +79,7 @@ Queue
This method is a :ref:`coroutine <coroutine>`. This method is a :ref:`coroutine <coroutine>`.
.. versionadded:: 3.4.3 .. versionadded:: 3.4.4
.. coroutinemethod:: put(item) .. coroutinemethod:: put(item)
...@@ -117,7 +117,7 @@ Queue ...@@ -117,7 +117,7 @@ Queue
Raises :exc:`ValueError` if called more times than there were items Raises :exc:`ValueError` if called more times than there were items
placed in the queue. placed in the queue.
.. versionadded:: 3.4.3 .. versionadded:: 3.4.4
.. attribute:: maxsize .. attribute:: maxsize
...@@ -151,7 +151,7 @@ JoinableQueue ...@@ -151,7 +151,7 @@ JoinableQueue
Deprecated alias for :class:`Queue`. Deprecated alias for :class:`Queue`.
.. deprecated:: 3.4.3 .. deprecated:: 3.4.4
Exceptions Exceptions
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment