@@ -253,10 +253,10 @@ def _marshaled_dispatch(self, data, dispatch_method = None):
253253 response = self ._dispatch (method , params )
254254 # wrap response in a singleton tuple
255255 response = (response ,)
256- response = xmlrpclib .dumps (response , methodresponse = 1 ,
256+ response = xmlrpclib .dumps (response , methodresponse = 1 ,
257257 allow_none = self .allow_none , encoding = self .encoding )
258258 except Fault , fault :
259- response = xmlrpclib .dumps (fault , allow_none = self .allow_none ,
259+ response = xmlrpclib .dumps (fault , allow_none = self .allow_none ,
260260 encoding = self .encoding )
261261 except :
262262 # report exception back to server
@@ -427,8 +427,8 @@ def do_POST(self):
427427 """
428428
429429 try :
430- # Get arguments by reading body of request.
431- # We read this in chunks to avoid straining
430+ # Get arguments by reading body of request.
431+ # We read this in chunks to avoid straining
432432 # socket.read(); around the 10 or 15Mb mark, some platforms
433433 # begin to have problems (bug #792570).
434434 max_chunk_size = 10 * 1024 * 1024
@@ -490,8 +490,8 @@ def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler,
490490 SimpleXMLRPCDispatcher .__init__ (self , allow_none , encoding )
491491 SocketServer .TCPServer .__init__ (self , addr , requestHandler )
492492
493- # [Bug #1222790] If possible, set close-on-exec flag; if a
494- # method spawns a subprocess, the subprocess shouldn't have
493+ # [Bug #1222790] If possible, set close-on-exec flag; if a
494+ # method spawns a subprocess, the subprocess shouldn't have
495495 # the listening socket open.
496496 if hasattr (fcntl , 'FD_CLOEXEC' ):
497497 flags = fcntl .fcntl (self .fileno (), fcntl .F_GETFD )
0 commit comments