From: Georg Brandl Date: Sun, 11 May 2008 10:59:39 +0000 (+0000) Subject: #2741: clarification of value range for address_family. X-Git-Tag: v2.6b1~500 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0aaf559bfed779e9e3b615bafd12ecc387e449c9;p=python #2741: clarification of value range for address_family. --- diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index a8eb9532bd..4163a8f581 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -156,7 +156,7 @@ Server Objects .. data:: address_family The family of protocols to which the server's socket belongs. - :const:`socket.AF_INET` and :const:`socket.AF_UNIX` are two possible values. + Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`. .. data:: RequestHandlerClass @@ -200,7 +200,7 @@ The server classes support the following class variables: .. data:: socket_type The type of socket used by the server; :const:`socket.SOCK_STREAM` and - :const:`socket.SOCK_DGRAM` are two possible values. + :const:`socket.SOCK_DGRAM` are two common values. .. data:: timeout