[Python-checkins] r52468 - python/branches/release24-maint/Doc/lib/libasyncore.tex

andrew.kuchling python-checkins at python.org
Fri Oct 27 15:07:10 CEST 2006


Author: andrew.kuchling
Date: Fri Oct 27 15:07:10 2006
New Revision: 52468

Modified:
   python/branches/release24-maint/Doc/lib/libasyncore.tex
Log:
[Bug #1562583] Mention the set_reuse_addr() method

Modified: python/branches/release24-maint/Doc/lib/libasyncore.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libasyncore.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libasyncore.tex	Fri Oct 27 15:07:10 2006
@@ -199,9 +199,11 @@
 \end{methoddesc}
 
 \begin{methoddesc}{bind}{address}
-  Bind the socket to \var{address}.  The socket must not already
-  be bound.  (The format of \var{address} depends on the address
-  family --- see above.)
+  Bind the socket to \var{address}.  The socket must not already be
+  bound.  (The format of \var{address} depends on the address family
+  --- see above.)  To mark the socket as re-usable (setting the
+  \constant{SO_REUSEADDR} option), call the \class{dispatcher}
+  object's \method{set_reuse_addr()} method.
 \end{methoddesc}
 
 \begin{methoddesc}{accept}{}


More information about the Python-checkins mailing list