Skip to content

Commit 84c717d

Browse files
committed
asyncio doc: changes on the Queue API missed Python 3.4.3 release
1 parent 77a6b20 commit 84c717d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/library/asyncio-queue.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Queue
3333

3434
This class is :ref:`not thread safe <asyncio-multithreading>`.
3535

36-
.. versionchanged:: 3.4.3
36+
.. versionchanged:: 3.4.4
3737
New :meth:`join` and :meth:`task_done` methods.
3838

3939
.. method:: empty()
@@ -79,7 +79,7 @@ Queue
7979

8080
This method is a :ref:`coroutine <coroutine>`.
8181

82-
.. versionadded:: 3.4.3
82+
.. versionadded:: 3.4.4
8383

8484
.. coroutinemethod:: put(item)
8585

@@ -117,7 +117,7 @@ Queue
117117
Raises :exc:`ValueError` if called more times than there were items
118118
placed in the queue.
119119

120-
.. versionadded:: 3.4.3
120+
.. versionadded:: 3.4.4
121121

122122
.. attribute:: maxsize
123123

@@ -151,7 +151,7 @@ JoinableQueue
151151

152152
Deprecated alias for :class:`Queue`.
153153

154-
.. deprecated:: 3.4.3
154+
.. deprecated:: 3.4.4
155155

156156

157157
Exceptions

0 commit comments

Comments
 (0)