[Python-checkins] python/dist/src/Lib/logging config.py, 1.10.2.1, 1.10.2.2

vsajip@users.sourceforge.net vsajip at users.sourceforge.net
Fri Sep 16 12:45:50 CEST 2005


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

Modified Files:
      Tag: release24-maint
	config.py 
Log Message:
Misc. backported changes

Index: config.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/logging/config.py,v
retrieving revision 1.10.2.1
retrieving revision 1.10.2.2
diff -u -d -r1.10.2.1 -r1.10.2.2
--- config.py	31 Mar 2005 20:11:45 -0000	1.10.2.1
+++ config.py	16 Sep 2005 10:45:46 -0000	1.10.2.2
@@ -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