Commit c1db513e authored by Benjamin Peterson's avatar Benjamin Peterson

repair errors in (set|get)_task_factory note (#28051)

parent cb3f2c8f
...@@ -804,11 +804,12 @@ Notable changes in the :mod:`asyncio` module since Python 3.4.0: ...@@ -804,11 +804,12 @@ Notable changes in the :mod:`asyncio` module since Python 3.4.0:
:func:`~asyncio.ensure_future`. :func:`~asyncio.ensure_future`.
(Contributed by Yury Selivanov.) (Contributed by Yury Selivanov.)
* New :meth:`loop.set_task_factory() <asyncio.BaseEventLoop.set_task_factory>` * New :meth:`loop.set_task_factory()
and :meth:`loop.set_task_factory() <asyncio.BaseEventLoop.get_task_factory>` <asyncio.AbstractEventLoop.set_task_factory>` and
methods to customize the task factory that :meth:`loop.get_task_factory() <asyncio.AbstractEventLoop.get_task_factory>`
:meth:`loop.create_task() <asyncio.BaseEventLoop.create_task>` method uses. methods to customize the task factory that :meth:`loop.create_task()
(Contributed by Yury Selivanov.) <asyncio.BaseEventLoop.create_task>` method uses. (Contributed by Yury
Selivanov.)
* New :meth:`Queue.join() <asyncio.Queue.join>` and * New :meth:`Queue.join() <asyncio.Queue.join>` and
:meth:`Queue.task_done() <asyncio.Queue.task_done>` queue methods. :meth:`Queue.task_done() <asyncio.Queue.task_done>` queue methods.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment