]> granicus.if.org Git - python/commitdiff
whatsnew/3.5: Mention new asyncio APIs in 3.5.1
authorYury Selivanov <yselivanov@sprymix.com>
Tue, 15 Dec 2015 05:30:18 +0000 (00:30 -0500)
committerYury Selivanov <yselivanov@sprymix.com>
Tue, 15 Dec 2015 05:30:18 +0000 (00:30 -0500)
Doc/whatsnew/3.5.rst

index 73c851dc93e0ce5b8b081c83d09087eacbd8964e..61992f78ff6805b644d5afb826f4e597d9d901c2 100644 (file)
@@ -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
 ---