From: Vinay Sajip Date: Fri, 16 Sep 2005 10:55:57 +0000 (+0000) Subject: Misc. backported changes X-Git-Tag: v2.4.2c1~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bb4dc6b669ab8e8cc5eb3d8ffcd206911d8b204;p=thirdparty%2FPython%2Fcpython.git Misc. backported changes --- diff --git a/Doc/lib/liblogging.tex b/Doc/lib/liblogging.tex index f5c49bbe5ae5..639966efc243 100644 --- a/Doc/lib/liblogging.tex +++ b/Doc/lib/liblogging.tex @@ -1418,7 +1418,10 @@ configurations. If no port is specified, the module's default will be sent as a file suitable for processing by \function{fileConfig()}. Returns a \class{Thread} instance on which you can call \method{start()} to start the server, and which you can \method{join()} when appropriate. -To stop the server, call \function{stopListening()}. +To stop the server, call \function{stopListening()}. To send a configuration +to the socket, read in the configuration file and send it to the socket +as a string of bytes preceded by a four-byte length packed in binary using +struct.\code{pack(">L", n)}. \end{funcdesc} \begin{funcdesc}{stopListening}{}