From: Yury Selivanov Date: Tue, 15 Dec 2015 05:30:18 +0000 (-0500) Subject: whatsnew/3.5: Mention new asyncio APIs in 3.5.1 X-Git-Tag: v3.6.0a1~910^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf077ee043415607d49739eaae47cfc4d0fb2188;p=thirdparty%2FPython%2Fcpython.git whatsnew/3.5: Mention new asyncio APIs in 3.5.1 --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 73c851dc93e0..61992f78ff68 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 `. (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() ` + method to check if the transport is closing or closed. + (Contributed by Yury Selivanov.) + +* The :meth:`loop.create_server() ` + method can now accept a list of hosts. + (Contributed by Yann Sionneau.) + bz2 ---