summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-11 10:59:39 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-11 10:59:39 (GMT)
commit0aaf559bfed779e9e3b615bafd12ecc387e449c9 (patch)
tree907e6149214b1323dae04f2740cec5f879e2ccc0
parente9135ba79de0554e99589e2b1143bd16eef8d8a2 (diff)
downloadcpython-0aaf559bfed779e9e3b615bafd12ecc387e449c9.zip
cpython-0aaf559bfed779e9e3b615bafd12ecc387e449c9.tar.gz
cpython-0aaf559bfed779e9e3b615bafd12ecc387e449c9.tar.bz2
#2741: clarification of value range for address_family.
-rw-r--r--Doc/library/socketserver.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst
index a8eb953..4163a8f 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