diff options
author | Charles-François Natali <cf.natali@gmail.com> | 2014-10-14 20:22:44 (GMT) |
---|---|---|
committer | Charles-François Natali <cf.natali@gmail.com> | 2014-10-14 20:22:44 (GMT) |
commit | 98c745a773f0536001d85ebe39372570bb303c4b (patch) | |
tree | 62b0435055818f81be3de2bb8e8b0538314d94c6 /Doc/library/socket.rst | |
parent | 987f3dd161c4390d5e458298b93f73fdb984ad6c (diff) | |
download | cpython-98c745a773f0536001d85ebe39372570bb303c4b.zip cpython-98c745a773f0536001d85ebe39372570bb303c4b.tar.gz cpython-98c745a773f0536001d85ebe39372570bb303c4b.tar.bz2 |
Issue #18643: Add socket.socketpair() on Windows.
Diffstat (limited to 'Doc/library/socket.rst')
-rw-r--r-- | Doc/library/socket.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index ceeb776..1c333f4 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -350,7 +350,6 @@ The following functions all create :ref:`socket objects <socket-objects>`. type, and protocol number. Address family, socket type, and protocol number are as for the :func:`.socket` function above. The default family is :const:`AF_UNIX` if defined on the platform; otherwise, the default is :const:`AF_INET`. - Availability: Unix. The newly created sockets are :ref:`non-inheritable <fd_inheritance>`. @@ -361,6 +360,9 @@ The following functions all create :ref:`socket objects <socket-objects>`. .. versionchanged:: 3.4 The returned sockets are now non-inheritable. + .. versionchanged:: 3.5 + Windows support added. + .. function:: create_connection(address[, timeout[, source_address]]) |