Make urllib use HTTP/1.1. It seems to work now, but hasn't been

carefully tested.
This commit is contained in:
Jeremy Hylton 2009-03-31 16:37:16 +00:00
parent 21151760d9
commit 2bdb576e70

View file

@ -1562,10 +1562,6 @@ def _open_generic_http(self, connection_factory, url, data):
else:
auth = None
http_conn = connection_factory(host)
## # XXX We should fix urllib so that it works with HTTP/1.1.
## http_conn._http_vsn = 10
## http_conn._http_vsn_str = "HTTP/1.0"
headers = {}
if proxy_auth:
headers["Proxy-Authorization"] = "Basic %s" % proxy_auth