[Python-checkins] commit of r41590 - python/trunk/Lib/SimpleXMLRPCServer.py

andrew.kuchling python-checkins at python.org
Sun Dec 4 17:45:11 CET 2005


Author: andrew.kuchling
Date: Sun Dec  4 17:45:05 2005
New Revision: 41590

Modified:
   python/trunk/Lib/SimpleXMLRPCServer.py
Log:
Use boolean name

Modified: python/trunk/Lib/SimpleXMLRPCServer.py
==============================================================================
--- python/trunk/Lib/SimpleXMLRPCServer.py	(original)
+++ python/trunk/Lib/SimpleXMLRPCServer.py	Sun Dec  4 17:45:05 2005
@@ -481,7 +481,7 @@
     allow_reuse_address = True
 
     def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler,
-                 logRequests=1, allow_none=False):
+                 logRequests=True, allow_none=False):
         self.logRequests = logRequests
 
         SimpleXMLRPCDispatcher.__init__(self, allow_none)


More information about the Python-checkins mailing list