diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-08 02:22:39 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-08 02:22:39 (GMT) |
commit | 6c50101fc90ae5833072a34bd057d0f304cfe334 (patch) | |
tree | 73add8b4e7a58ccbad25b3ce2ff3913651738e28 /Doc/library | |
parent | 99e1bfad0944cd74b6746d0c2219c970cce7979b (diff) | |
download | cpython-6c50101fc90ae5833072a34bd057d0f304cfe334.zip cpython-6c50101fc90ae5833072a34bd057d0f304cfe334.tar.gz cpython-6c50101fc90ae5833072a34bd057d0f304cfe334.tar.bz2 |
whatsnew: inet_pton/inet_ntop support windows (#7171).
Added versionchanged to docs.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/socket.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 02124d1..8b1b8fb 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -633,6 +633,9 @@ The :mod:`socket` module also offers various network-related services: Availability: Unix (maybe not all platforms), Windows. + .. versionchanged:: 3.4 + Windows support added + .. function:: inet_ntop(address_family, packed_ip) @@ -649,6 +652,9 @@ The :mod:`socket` module also offers various network-related services: Availability: Unix (maybe not all platforms), Windows. + .. versionchanged:: 3.4 + Windows support added + .. XXX: Are sendmsg(), recvmsg() and CMSG_*() available on any |