diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-05-29 21:02:37 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-05-29 21:02:37 (GMT) |
commit | 8f96c9f8ed2a4795e34b333411451e24f28f74d2 (patch) | |
tree | 0f87bcc9b18f6d6c907bd040e0bc9af794a155ba /Doc/whatsnew | |
parent | fecb75c1bb46c818e6579ba422cfa5d0d9d104d1 (diff) | |
download | cpython-8f96c9f8ed2a4795e34b333411451e24f28f74d2.zip cpython-8f96c9f8ed2a4795e34b333411451e24f28f74d2.tar.gz cpython-8f96c9f8ed2a4795e34b333411451e24f28f74d2.tar.bz2 |
bpo-37007: Implement socket.if_nametoindex(), if_indextoname() and if_nameindex() on Windows (GH-13522)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 5cd9a8e..5ee9cf0 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -556,6 +556,10 @@ convenience functions to automate the necessary tasks usually involved when creating a server socket, including accepting both IPv4 and IPv6 connections on the same socket. (Contributed by Giampaolo Rodola in :issue:`17561`.) +The :func:`socket.if_nameindex()`, :func:`socket.if_nametoindex()`, and +:func:`socket.if_indextoname()` functions have been implemented on Windows. +(Contributed by Zackery Spytz in :issue:`37007`.) + shlex ---------- |