[Python-checkins] cpython (3.5): repair errors in (set|get)_task_factory note (#28051)

benjamin.peterson python-checkins at python.org
Fri Sep 9 15:47:15 EDT 2016


https://hg.python.org/cpython/rev/8e74e76deda1
changeset:   103448:8e74e76deda1
branch:      3.5
parent:      103445:137806ca59ce
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Sep 09 12:46:42 2016 -0700
summary:
  repair errors in (set|get)_task_factory note (#28051)

files:
  Doc/whatsnew/3.5.rst |  11 ++++++-----
  1 files changed, 6 insertions(+), 5 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
@@ -804,11 +804,12 @@
   :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>`
-  methods to customize the task factory that
-  :meth:`loop.create_task() <asyncio.BaseEventLoop.create_task>` method uses.
-  (Contributed by Yury Selivanov.)
+* New :meth:`loop.set_task_factory()
+  <asyncio.AbstractEventLoop.set_task_factory>` and
+  :meth:`loop.get_task_factory() <asyncio.AbstractEventLoop.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.

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


More information about the Python-checkins mailing list