]> granicus.if.org Git - python/commitdiff
asyncio: Update whatsnew/3.5.2
authorYury Selivanov <yury@magic.io>
Wed, 8 Jun 2016 16:55:29 +0000 (12:55 -0400)
committerYury Selivanov <yury@magic.io>
Wed, 8 Jun 2016 16:55:29 +0000 (12:55 -0400)
Doc/whatsnew/3.5.rst

index 052c742ea470590da493c629d6e458c63b22b59f..e3e73e4825f6a3aa86b85a0301385b86660e6b28 100644 (file)
@@ -844,11 +844,16 @@ Updates in 3.5.2:
   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
 ---