[Python-checkins] r63057 - python/trunk/Doc/library/socketserver.rst

georg.brandl python-checkins at python.org
Sun May 11 12:59:39 CEST 2008


Author: georg.brandl
Date: Sun May 11 12:59:39 2008
New Revision: 63057

Log:
#2741: clarification of value range for address_family.


Modified:
   python/trunk/Doc/library/socketserver.rst

Modified: python/trunk/Doc/library/socketserver.rst
==============================================================================
--- python/trunk/Doc/library/socketserver.rst	(original)
+++ python/trunk/Doc/library/socketserver.rst	Sun May 11 12:59:39 2008
@@ -156,7 +156,7 @@
 .. 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 @@
 .. 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
 


More information about the Python-checkins mailing list