]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-129994: update docs when using `dualstack_ipv6` in `socket.create_server` (#129996)
authorAlexander Ershov <150328014+AEErshov@users.noreply.github.com>
Sun, 30 Mar 2025 08:19:36 +0000 (15:19 +0700)
committerGitHub <noreply@github.com>
Sun, 30 Mar 2025 08:19:36 +0000 (08:19 +0000)
Doc/library/socket.rst

index bc888dc593cf69f7511643f07f4e2d348181026b..1bc7f76b5ba694e90b8cbcb49a3a7b4d2bf95773 100644 (file)
@@ -882,10 +882,10 @@ The following functions all create :ref:`socket objects <socket-objects>`.
    , a default reasonable value is chosen.
    *reuse_port* dictates whether to set the :data:`SO_REUSEPORT` socket option.
 
-   If *dualstack_ipv6* is true and the platform supports it the socket will
-   be able to accept both IPv4 and IPv6 connections, else it will raise
-   :exc:`ValueError`. Most POSIX platforms and Windows are supposed to support
-   this functionality.
+   If *dualstack_ipv6* is true, *family* is :data:`AF_INET6` and the platform
+   supports it the socket will be able to accept both IPv4 and IPv6 connections,
+   else it will raise :exc:`ValueError`. Most POSIX platforms and Windows are
+   supposed to support this functionality.
    When this functionality is enabled the address returned by
    :meth:`socket.getpeername` when an IPv4 connection occurs will be an IPv6
    address represented as an IPv4-mapped IPv6 address.