summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirkjan Ochtman <dirkjan@ochtman.nl>2010-02-24 04:00:52 +0000
committerDirkjan Ochtman <dirkjan@ochtman.nl>2010-02-24 04:00:52 +0000
commit2d78070f63aee49842e82b2d9aae66ac7493c0fa (patch)
tree5182a05644ac4c988aa5cdd3c94f2047827311f0
parent48605be12883a486942e65bad07214ee6efe407e (diff)
downloadcpython-git-2d78070f63aee49842e82b2d9aae66ac7493c0fa.tar.gz
Issue #7733: add explicit reference in asyncore docs.
-rw-r--r--Doc/library/asyncore.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst
index a2e1b5ed73..468e5b57d9 100644
--- a/Doc/library/asyncore.rst
+++ b/Doc/library/asyncore.rst
@@ -202,7 +202,8 @@ any that have been added to the map during asynchronous service) is closed.
.. method:: bind(address)
Bind the socket to *address*. The socket must not already be bound. (The
- format of *address* depends on the address family --- see above.) To mark
+ format of *address* depends on the address family --- refer to the
+ :mod:`socket` documentation for more information.) To mark
the socket as re-usable (setting the :const:`SO_REUSEADDR` option), call
the :class:`dispatcher` object's :meth:`set_reuse_addr` method.