summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.5.rst
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-06-08 16:55:29 (GMT)
committerYury Selivanov <yury@magic.io>2016-06-08 16:55:29 (GMT)
commitaf74512e44e61920db36574087e75f1271787bf5 (patch)
tree3e79a7ed1ef75895b489e7651d5a10cf6009660b /Doc/whatsnew/3.5.rst
parent55c5084223d0a91777f6ff48e1b5e1dd7e4ae09d (diff)
downloadcpython-af74512e44e61920db36574087e75f1271787bf5.zip
cpython-af74512e44e61920db36574087e75f1271787bf5.tar.gz
cpython-af74512e44e61920db36574087e75f1271787bf5.tar.bz2
asyncio: Update whatsnew/3.5.2
Diffstat (limited to 'Doc/whatsnew/3.5.rst')
-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 052c742..e3e73e4 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
---