diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-12-15 05:30:32 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-12-15 05:30:32 (GMT) |
commit | e93f407a0f4929895c4a07d65edddc7dbc494534 (patch) | |
tree | b023dcc1b19caa5c04054745db24e3cd2b16e917 /Doc | |
parent | 60889d12381409edefcc98d33388ea6ae9a60478 (diff) | |
parent | bf077ee043415607d49739eaae47cfc4d0fb2188 (diff) | |
download | cpython-e93f407a0f4929895c4a07d65edddc7dbc494534.zip cpython-e93f407a0f4929895c4a07d65edddc7dbc494534.tar.gz cpython-e93f407a0f4929895c4a07d65edddc7dbc494534.tar.bz2 |
Merge 3.5
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 73c851d..61992f7 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -810,6 +810,18 @@ Updates in 3.5.1: now accept all kinds of :term:`awaitable objects <awaitable>`. (Contributed by Yury Selivanov.) +* New :func:`~asyncio.run_coroutine_threadsafe` function to submit + coroutines to event loops from other threads. + (Contributed by Vincent Michel.) + +* New :meth:`Transport.is_closing() <asyncio.Transport.is_closing>` + method to check if the transport is closing or closed. + (Contributed by Yury Selivanov.) + +* The :meth:`loop.create_server() <asyncio.BaseEventLoop.create_server>` + method can now accept a list of hosts. + (Contributed by Yann Sionneau.) + bz2 --- |