mercurial/pure/__init__.py
author |
Kyle Lippincott <spectral@google.com> |
|
Thu, 01 Jun 2017 18:23:20 -0700 |
changeset 32667 |
2806c7bbcb5e |
parent 16438 |
28a90cdf0ca0
|
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.