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

yury.selivanov python-checkins at python.org
Wed Jun 8 12:57:02 EDT 2016


https://hg.python.org/cpython/rev/718f0fbc1336
changeset:   101801:718f0fbc1336
parent:      101799:44767f603535
parent:      101800:d8df590a476d
user:        Yury Selivanov <yury at magic.io>
date:        Wed Jun 08 12:55:54 2016 -0400
summary:
  Merge 3.5 (whatsnew)

files:
  Doc/whatsnew/3.5.rst |  9 +++++++--
  1 files changed, 7 insertions(+), 2 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
@@ -844,11 +844,16 @@
   sequence appears.
   (Contributed by Mark Korenberg.)
 
-* The :meth:`loop.getaddrinfo() <asyncio.BaseEventLoop.getaddrinfo>`
-  method is optimized to avoid calling the system ``getaddrinfo``
+* The :meth:`loop.create_connection() <asyncio.BaseEventLoop.create_connection>`
+  and :meth:`loop.create_server() <asyncio.BaseEventLoop.create_server>`
+  methods are optimized to avoid calling the system ``getaddrinfo``
   function if the address is already resolved.
   (Contributed by A. Jesse Jiryu Davis.)
 
+* The :meth:`loop.sock_connect(sock, address) <asyncio.BaseEventLoop.sock_connect>`
+  no longer requires the *address* to be resolved prior to the call.
+  (Contributed by A. Jesse Jiryu Davis.)
+
 
 bz2
 ---

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


More information about the Python-checkins mailing list