[Python-checkins] cpython (merge 3.5 -> default): Merge 3.5

yury.selivanov python-checkins at python.org
Tue Dec 15 00:30:36 EST 2015


https://hg.python.org/cpython/rev/f8afbc4749a1
changeset:   99574:f8afbc4749a1
parent:      99572:287bb82768a7
parent:      99573:e544a0b58706
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Tue Dec 15 00:30:32 2015 -0500
summary:
  Merge 3.5

files:
  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
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -810,6 +810,18 @@
   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
 ---

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list