hgext/__init__.py
author Kyle Lippincott <spectral@google.com>
Thu, 01 Jun 2017 18:23:20 -0700
changeset 32687 2806c7bbcb5e
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
keepalive: pass the correct arguments to HTTPResponse python2.7's httplib.HTTPResponse takes the arguments in the following order: sock, debuglevel, strict, method, buffering This was previously passing them in as positional and skipped strict, so we set strict=method. I'm explicitly setting strict=True now to preserve the previous behavior that has been there since this file was created.

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)