[Python-checkins] cpython (merge 3.4 -> default): Merge 3.4 (asyncio doc)

victor.stinner python-checkins at python.org
Tue Mar 10 16:29:38 CET 2015


https://hg.python.org/cpython/rev/388edf038328
changeset:   94929:388edf038328
parent:      94927:5163fb8dc61f
parent:      94928:12a857e173b7
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Mar 10 16:29:31 2015 +0100
summary:
  Merge 3.4 (asyncio doc)

files:
  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
--- a/Doc/library/asyncio-queue.rst
+++ b/Doc/library/asyncio-queue.rst
@@ -33,7 +33,7 @@
 
    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 @@
 
       This method is a :ref:`coroutine <coroutine>`.
 
-      .. versionadded:: 3.4.3
+      .. versionadded:: 3.4.4
 
    .. coroutinemethod:: put(item)
 
@@ -117,7 +117,7 @@
       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 @@
 
    Deprecated alias for :class:`Queue`.
 
-   .. deprecated:: 3.4.3
+   .. deprecated:: 3.4.4
 
 
 Exceptions

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list