[Python-checkins] cpython: whatsnew: inet_pton/inet_ntop support windows (#7171).

r.david.murray python-checkins at python.org
Sat Mar 8 03:38:26 CET 2014


http://hg.python.org/cpython/rev/f82145a516f0
changeset:   89505:f82145a516f0
user:        R David Murray <rdmurray at bitdance.com>
date:        Fri Mar 07 21:22:39 2014 -0500
summary:
  whatsnew: inet_pton/inet_ntop support windows (#7171).

Added versionchanged to docs.

files:
  Doc/library/socket.rst |  6 ++++++
  Doc/whatsnew/3.4.rst   |  3 +++
  2 files changed, 9 insertions(+), 0 deletions(-)


diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -633,6 +633,9 @@
 
    Availability: Unix (maybe not all platforms), Windows.
 
+   .. versionchanged:: 3.4
+      Windows support added
+
 
 .. function:: inet_ntop(address_family, packed_ip)
 
@@ -649,6 +652,9 @@
 
    Availability: Unix (maybe not all platforms), Windows.
 
+   .. versionchanged:: 3.4
+      Windows support added
+
 
 ..
    XXX: Are sendmsg(), recvmsg() and CMSG_*() available on any
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -1178,6 +1178,9 @@
 
 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
 -------

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list