mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Merge 3.5
This commit is contained in:
commit
bd316c71ae
1 changed files with 7 additions and 7 deletions
|
@ -761,13 +761,13 @@ all changes introduced in Python 3.5 have also been backported to Python 3.4.x.
|
||||||
Notable changes in :mod:`asyncio` module since Python 3.4.0:
|
Notable changes in :mod:`asyncio` module since Python 3.4.0:
|
||||||
|
|
||||||
* A new debugging APIs: :meth:`loop.set_debug() <asyncio.BaseEventLoop.set_debug>`
|
* 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.)
|
(Contributed by Victor Stinner.)
|
||||||
|
|
||||||
* The proactor event loop now supports SSL.
|
* The proactor event loop now supports SSL.
|
||||||
(Contributed by Antoine Pitrou and Victor Stinner in :issue:`22560`.)
|
(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.
|
check if the event loop is closed.
|
||||||
(Contributed by Victor Stinner in :issue:`21326`.)
|
(Contributed by Victor Stinner in :issue:`21326`.)
|
||||||
|
|
||||||
|
@ -787,14 +787,14 @@ Notable changes in :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() <asyncio.BaseEventLoop.set_task_factory>`
|
||||||
and :meth:`loop.set_task_factory <asyncio.BaseEventLoop.get_task_factory>`
|
and :meth:`loop.set_task_factory() <asyncio.BaseEventLoop.get_task_factory>`
|
||||||
to customize the task factory that
|
methods to customize the task factory that
|
||||||
:meth:`loop.create_task() <asyncio.BaseEventLoop.create_task>` method uses.
|
:meth:`loop.create_task() <asyncio.BaseEventLoop.create_task>` method uses.
|
||||||
(Contributed by Yury Selivanov.)
|
(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.
|
||||||
(Contributed by Victor Stinner.)
|
(Contributed by Victor Stinner.)
|
||||||
|
|
||||||
* The ``JoinableQueue`` class was removed, in favor of the
|
* The ``JoinableQueue`` class was removed, in favor of the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue