##// END OF EJS Templates
keepalive: pass the correct arguments to HTTPResponse...
Kyle Lippincott -
r32667:2806c7bb default
parent child Browse files
Show More
@@ -353,7 +353,8 b' class HTTPResponse(httplib.HTTPResponse)'
353
353
354
354
355 def __init__(self, sock, debuglevel=0, strict=0, method=None):
355 def __init__(self, sock, debuglevel=0, strict=0, method=None):
356 httplib.HTTPResponse.__init__(self, sock, debuglevel, method)
356 httplib.HTTPResponse.__init__(self, sock, debuglevel=debuglevel,
357 strict=True, method=method)
357 self.fileno = sock.fileno
358 self.fileno = sock.fileno
358 self.code = None
359 self.code = None
359 self._rbuf = ''
360 self._rbuf = ''
General Comments 0
You need to be logged in to leave comments. Login now