summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-06-08 12:55:29 -0400
committerYury Selivanov <yury@magic.io>2016-06-08 12:55:29 -0400
commitc77db5a6008a43c7873b2929c65eb7fd44fb9818 (patch)
tree867f8eeee23f45d91c9261a0a84ec9a546698a21
parentb53d4b6a2b5c7b956a2f0f7c02cd66822febcc1e (diff)
downloadcpython-c77db5a6008a43c7873b2929c65eb7fd44fb9818.tar.gz
asyncio: Update whatsnew/3.5.2
-rw-r--r--Doc/whatsnew/3.5.rst9
1 files changed, 7 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 052c742ea4..e3e73e4825 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() <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
---