whatsnew: inet_pton/inet_ntop support windows (#7171).
authorR David Murray <rdmurray@bitdance.com>
Sat, 8 Mar 2014 02:22:39 +0000 (21:22 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sat, 8 Mar 2014 02:22:39 +0000 (21:22 -0500)
Added versionchanged to docs.

Doc/library/socket.rst
Doc/whatsnew/3.4.rst

index 02124d10f4463e48c302698b5284afff9ebe0b24..8b1b8fb9c003e8c80e3695ffc7a2a999fc631f19 100644 (file)
@@ -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
index 884733d2af62ebc8d6d107f5117a8d3d0554b3e7..d23c3e2fd5658ac02bfe319c7002fb1dab4d2c14 100644 (file)
@@ -1178,6 +1178,9 @@ during debugging, instead of integer "magic numbers".
 
 The :data:`~socket.AF_LINK` constant is now available on BSD and OSX.
 
+:func:`~socket.inet_pton` and :func:`~socket.inet_ntop` are now supported
+on Windows.  (Contributed by Atsuo Ishimoto in :issue:`7171`.)
+
 
 sqlite3
 -------