comparison mercurial/httpclient/socketutil.py @ 27601:1ad9da968a2e

httpclient: update to 938f2107d6e2 of httpplus This enhances proxy support in httpclient a little bit, though I don't know that we used that functionality at all. It also switches httpplus to using absolute_import.
author Augie Fackler <augie@google.com>
date Thu, 31 Dec 2015 13:19:20 -0500
parents 328739ea70c3
children 8a66eda46c98
comparison
equal deleted inserted replaced
27600:cfb26146a8cd 27601:1ad9da968a2e
30 30
31 This will attempt to use the ssl module and the new 31 This will attempt to use the ssl module and the new
32 socket.create_connection method, but fall back to the old 32 socket.create_connection method, but fall back to the old
33 methods if those are unavailable. 33 methods if those are unavailable.
34 """ 34 """
35 from __future__ import absolute_import
36
35 import logging 37 import logging
36 import socket 38 import socket
37 39
38 logger = logging.getLogger(__name__) 40 logger = logging.getLogger(__name__)
39 41