##// END OF EJS Templates
Merge
Bryan O'Sullivan -
r17701:f7b3518c merge default
parent child Browse files
Show More
@@ -377,10 +377,7 b' class HTTPResponse(httplib.HTTPResponse)'
377 377
378 378
379 379 def __init__(self, sock, debuglevel=0, strict=0, method=None):
380 if method: # the httplib in python 2.3 uses the method arg
381 httplib.HTTPResponse.__init__(self, sock, debuglevel, method)
382 else: # 2.2 doesn't
383 httplib.HTTPResponse.__init__(self, sock, debuglevel)
380 httplib.HTTPResponse.__init__(self, sock, debuglevel, method)
384 381 self.fileno = sock.fileno
385 382 self.code = None
386 383 self._rbuf = ''
General Comments 0
You need to be logged in to leave comments. Login now