[Python-checkins] python/dist/src/Lib/logging config.py,1.12,1.13

vsajip@users.sourceforge.net vsajip at users.sourceforge.net
Sun Jun 5 22:39:05 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/logging
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11960

Modified Files:
	config.py 
Log Message:
Documentation clarified re. config socket listener protocol

Index: config.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/logging/config.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- config.py	13 Mar 2005 09:57:46 -0000	1.12
+++ config.py	5 Jun 2005 20:39:02 -0000	1.13
@@ -225,9 +225,9 @@
             """
             Handle a request.
 
-            Each request is expected to be a 4-byte length,
-            followed by the config file. Uses fileConfig() to do the
-            grunt work.
+            Each request is expected to be a 4-byte length, packed using
+            struct.pack(">L", n), followed by the config file.
+            Uses fileConfig() to do the grunt work.
             """
             import tempfile
             try:



More information about the Python-checkins mailing list