[Python-checkins] cpython (3.5): whatsnew/3.5: Tweak asyncio module section

yury.selivanov python-checkins at python.org
Sun Sep 13 07:39:32 CEST 2015


https://hg.python.org/cpython/rev/cd74d760f334
changeset:   97966:cd74d760f334
branch:      3.5
parent:      97964:ef2423d18c1c
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Sun Sep 13 01:39:05 2015 -0400
summary:
  whatsnew/3.5: Tweak asyncio module section

files:
  Doc/whatsnew/3.5.rst |  14 +++++++-------
  1 files changed, 7 insertions(+), 7 deletions(-)


diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -761,13 +761,13 @@
 Notable changes in :mod:`asyncio` module since Python 3.4.0:
 
 * A new debugging APIs: :meth:`loop.set_debug() <asyncio.BaseEventLoop.set_debug>`
-  and :meth:`loop.get_debug() <asyncio.BaseEventLoop.get_debug>`.
+  and :meth:`loop.get_debug() <asyncio.BaseEventLoop.get_debug>` methods.
   (Contributed by Victor Stinner.)
 
 * The proactor event loop now supports SSL.
   (Contributed by Antoine Pitrou and Victor Stinner in :issue:`22560`.)
 
-* A new :meth:`loop.is_closed() <asyncio.BaseEventLoop.is_closed>` to
+* A new :meth:`loop.is_closed() <asyncio.BaseEventLoop.is_closed>` method to
   check if the event loop is closed.
   (Contributed by Victor Stinner in :issue:`21326`.)
 
@@ -787,14 +787,14 @@
   :func:`~asyncio.ensure_future`.
   (Contributed by Yury Selivanov.)
 
-* New :meth:`loop.set_task_factory <asyncio.BaseEventLoop.set_task_factory>`
-  and :meth:`loop.set_task_factory <asyncio.BaseEventLoop.get_task_factory>`
-  to customize the task factory that
+* New :meth:`loop.set_task_factory() <asyncio.BaseEventLoop.set_task_factory>`
+  and :meth:`loop.set_task_factory() <asyncio.BaseEventLoop.get_task_factory>`
+  methods to customize the task factory that
   :meth:`loop.create_task() <asyncio.BaseEventLoop.create_task>` method uses.
   (Contributed by Yury Selivanov.)
 
-* New :meth:`Queue.join <asyncio.Queue.join>` and
-  :meth:`Queue.task_done <asyncio.Queue.task_done>` queue methods.
+* New :meth:`Queue.join() <asyncio.Queue.join>` and
+  :meth:`Queue.task_done() <asyncio.Queue.task_done>` queue methods.
   (Contributed by Victor Stinner.)
 
 * The ``JoinableQueue`` class was removed, in favor of the

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


More information about the Python-checkins mailing list