From: Yury Selivanov Date: Wed, 8 Jun 2016 16:55:29 +0000 (-0400) Subject: asyncio: Update whatsnew/3.5.2 X-Git-Tag: v3.5.2rc1~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=af74512e44e61920db36574087e75f1271787bf5;p=thirdparty%2FPython%2Fcpython.git asyncio: Update whatsnew/3.5.2 --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 052c742ea470..e3e73e4825f6 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -844,11 +844,16 @@ Updates in 3.5.2: sequence appears. (Contributed by Mark Korenberg.) -* The :meth:`loop.getaddrinfo() ` - method is optimized to avoid calling the system ``getaddrinfo`` +* The :meth:`loop.create_connection() ` + and :meth:`loop.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) ` + no longer requires the *address* to be resolved prior to the call. + (Contributed by A. Jesse Jiryu Davis.) + bz2 ---