From: Benjamin Peterson Date: Fri, 9 Sep 2016 19:46:42 +0000 (-0700) Subject: repair errors in (set|get)_task_factory note (#28051) X-Git-Tag: v3.6.0b1~183^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1db513e368eb485df49a4bd354984136f3a39bd;p=thirdparty%2FPython%2Fcpython.git repair errors in (set|get)_task_factory note (#28051) --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 339dbb6d3dad..9b71f6677a16 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -804,11 +804,12 @@ Notable changes in the :mod:`asyncio` module since Python 3.4.0: :func:`~asyncio.ensure_future`. (Contributed by Yury Selivanov.) -* New :meth:`loop.set_task_factory() ` - and :meth:`loop.set_task_factory() ` - methods to customize the task factory that - :meth:`loop.create_task() ` method uses. - (Contributed by Yury Selivanov.) +* New :meth:`loop.set_task_factory() + ` and + :meth:`loop.get_task_factory() ` + methods to customize the task factory that :meth:`loop.create_task() + ` method uses. (Contributed by Yury + Selivanov.) * New :meth:`Queue.join() ` and :meth:`Queue.task_done() ` queue methods.