[Python-checkins] r81340 - in python/branches/release26-maint: Doc/library/asyncore.rst

georg.brandl python-checkins at python.org
Wed May 19 16:14:45 CEST 2010


Author: georg.brandl
Date: Wed May 19 16:14:45 2010
New Revision: 81340

Log:
Merged revisions 78415 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78415 | dirkjan.ochtman | 2010-02-24 05:00:52 +0100 (Mi, 24 Feb 2010) | 1 line
  
  Issue #7733: add explicit reference in asyncore docs.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/asyncore.rst

Modified: python/branches/release26-maint/Doc/library/asyncore.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/asyncore.rst	(original)
+++ python/branches/release26-maint/Doc/library/asyncore.rst	Wed May 19 16:14:45 2010
@@ -202,7 +202,8 @@
    .. 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.
 


More information about the Python-checkins mailing list