gh-64414: mention AF_INET6 and IPv6 in socketserver docs. (#129866)

mention AF_INET6 and IPv6 in socketserver docs.
This commit is contained in:
Gregory P. Smith 2025-02-08 12:06:28 -08:00 committed by GitHub
parent f2ae79d29e
commit 5ce70ad129
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -266,8 +266,11 @@ Server Objects
.. attribute:: address_family
The family of protocols to which the server's socket belongs.
Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`.
The family of protocols to which the server's socket belongs. Common
examples are :const:`socket.AF_INET`, :const:`socket.AF_INET6`, and
:const:`socket.AF_UNIX`. Subclass the TCP or UDP server classes in this
module with class attribute ``address_family = AF_INET6`` set if you
want IPv6 server classes.
.. attribute:: RequestHandlerClass