summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorКоренберг Марк <socketpair@gmail.com>2018-01-27 22:20:50 (GMT)
committerYury Selivanov <yury@magic.io>2018-01-27 22:20:50 (GMT)
commit47c0b1f7d4115e6f15e6776c1f91d28e7d96fe0c (patch)
tree1de9f5ad4533c4b648c2744ab3bcca392bd657e5 /Misc/NEWS.d/next
parentee72ac0683e685b134f67cb0c6612c664ecadb65 (diff)
downloadcpython-47c0b1f7d4115e6f15e6776c1f91d28e7d96fe0c.zip
cpython-47c0b1f7d4115e6f15e6776c1f91d28e7d96fe0c.tar.gz
cpython-47c0b1f7d4115e6f15e6776c1f91d28e7d96fe0c.tar.bz2
bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2017-12-06-10-10-10.bpo-32221.ideco_.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-06-10-10-10.bpo-32221.ideco_.rst b/Misc/NEWS.d/next/Library/2017-12-06-10-10-10.bpo-32221.ideco_.rst
new file mode 100644
index 0000000..a88dcf4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-12-06-10-10-10.bpo-32221.ideco_.rst
@@ -0,0 +1,4 @@
+Various functions returning tuple containig IPv6 addresses now omit ``%scope``
+part since the same information is already encoded in *scopeid* tuple item.
+Especially this speeds up :func:`socket.recvfrom` when it receives multicast
+packet since useless resolving of network interface name is omitted.