keepalive: python 3 portability tweaks
authorAugie Fackler <augie@google.com>
Sun, 01 Oct 2017 12:15:53 -0400
changeset 34427 a454123f5d94
parent 34426 ae2fcf7af409
child 34428 0ee9cf8d054a
keepalive: python 3 portability tweaks Differential Revision: https://phab.mercurial-scm.org/D888
mercurial/keepalive.py
--- a/mercurial/keepalive.py	Sun Oct 01 07:29:51 2017 -0400
+++ b/mercurial/keepalive.py	Sun Oct 01 12:15:53 2017 -0400
@@ -92,6 +92,7 @@
 
 from .i18n import _
 from . import (
+    pycompat,
     util,
 )
 
@@ -235,7 +236,8 @@
         # The string form of BadStatusLine is the status line. Add some context
         # to make the error message slightly more useful.
         except httplib.BadStatusLine as err:
-            raise urlerr.urlerror(_('bad HTTP status line: %s') % err.line)
+            raise urlerr.urlerror(
+                _('bad HTTP status line: %s') % pycompat.sysbytes(err.line))
         except (socket.error, httplib.HTTPException) as err:
             raise urlerr.urlerror(err)
 
@@ -358,9 +360,12 @@
 
 
     def __init__(self, sock, debuglevel=0, strict=0, method=None):
+        extrakw = {}
+        if not pycompat.ispy3:
+            extrakw['strict'] = True
+            extrakw['buffering'] = True
         httplib.HTTPResponse.__init__(self, sock, debuglevel=debuglevel,
-                                      strict=True, method=method,
-                                      buffering=True)
+                                      method=method, **extrakw)
         self.fileno = sock.fileno
         self.code = None
         self._rbuf = ''