diff options
author | Atsuo Ishimoto <ishimoto@gembook.org> | 2012-07-16 06:16:54 (GMT) |
---|---|---|
committer | Atsuo Ishimoto <ishimoto@gembook.org> | 2012-07-16 06:16:54 (GMT) |
commit | da0fc14d46a174b921ea0f68e7996bf1cda9b95d (patch) | |
tree | 86bd82e21bbe4bd0fc68ea5bc8b14d1a0a51fcf6 /Doc | |
parent | 29828a6fa9a7d42b1f2383860d37cdf7d9e74d49 (diff) | |
download | cpython-da0fc14d46a174b921ea0f68e7996bf1cda9b95d.zip cpython-da0fc14d46a174b921ea0f68e7996bf1cda9b95d.tar.gz cpython-da0fc14d46a174b921ea0f68e7996bf1cda9b95d.tar.bz2 |
Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/socket.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 658b8c9..b01238c 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -594,7 +594,7 @@ The module :mod:`socket` exports the following constants and functions: both the value of *address_family* and the underlying implementation of :c:func:`inet_pton`. - Availability: Unix (maybe not all platforms). + Availability: Unix (maybe not all platforms), Windows. .. function:: inet_ntop(address_family, packed_ip) @@ -610,7 +610,7 @@ The module :mod:`socket` exports the following constants and functions: specified address family, :exc:`ValueError` will be raised. A :exc:`OSError` is raised for errors from the call to :func:`inet_ntop`. - Availability: Unix (maybe not all platforms). + Availability: Unix (maybe not all platforms), Windows. .. |