mirror of https://github.com/python/cpython
whatsnew: inet_pton/inet_ntop support windows (#7171).
Added versionchanged to docs.
This commit is contained in:
parent
99e1bfad09
commit
6c50101fc9
|
@ -633,6 +633,9 @@ The :mod:`socket` module also offers various network-related services:
|
||||||
|
|
||||||
Availability: Unix (maybe not all platforms), Windows.
|
Availability: Unix (maybe not all platforms), Windows.
|
||||||
|
|
||||||
|
.. versionchanged:: 3.4
|
||||||
|
Windows support added
|
||||||
|
|
||||||
|
|
||||||
.. function:: inet_ntop(address_family, packed_ip)
|
.. 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.
|
Availability: Unix (maybe not all platforms), Windows.
|
||||||
|
|
||||||
|
.. versionchanged:: 3.4
|
||||||
|
Windows support added
|
||||||
|
|
||||||
|
|
||||||
..
|
..
|
||||||
XXX: Are sendmsg(), recvmsg() and CMSG_*() available on any
|
XXX: Are sendmsg(), recvmsg() and CMSG_*() available on any
|
||||||
|
|
|
@ -1178,6 +1178,9 @@ during debugging, instead of integer "magic numbers".
|
||||||
|
|
||||||
The :data:`~socket.AF_LINK` constant is now available on BSD and OSX.
|
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
|
sqlite3
|
||||||
-------
|
-------
|
||||||
|
|
Loading…
Reference in New Issue