diff options
author | Коренберг Марк <socketpair@gmail.com> | 2018-02-12 19:47:42 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-02-12 19:47:42 (GMT) |
commit | 7766b96ab80b04509bbac708ee5ecf3c1c5934fc (patch) | |
tree | fd14d59599e60bbc67dc723ce0d2b9a0eda2e66d /Misc | |
parent | 3c34aad4e7a95913ec7db8e5e948a8fc69047bf7 (diff) | |
download | cpython-7766b96ab80b04509bbac708ee5ecf3c1c5934fc.zip cpython-7766b96ab80b04509bbac708ee5ecf3c1c5934fc.tar.gz cpython-7766b96ab80b04509bbac708ee5ecf3c1c5934fc.tar.bz2 |
bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (#5449)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-12-06-10-10-10.bpo-32221.ideco_.rst | 4 |
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. |