summaryrefslogtreecommitdiff
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-12-15 00:30:18 -0500
committerYury Selivanov <yselivanov@sprymix.com>2015-12-15 00:30:18 -0500
commit63ca863a55340524fb50eefa2ee37bcad15174bc (patch)
tree80dffa16f5ea4f77ea4d0213f0cd0893d2b23979 /Doc/whatsnew
parent69880e14549fae242fe0486c80e60050e2a4cea5 (diff)
downloadcpython-63ca863a55340524fb50eefa2ee37bcad15174bc.tar.gz
whatsnew/3.5: Mention new asyncio APIs in 3.5.1
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.5.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 73c851dc93..61992f78ff 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
---