Change by ABR :
--
nosy: -arobert
___
Python tracker
<https://bugs.python.org/issue15795>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
ABR added the comment:
I can report that this occurs on Python 2.7.3, when using urllib[x] wrapped in
'requests'. Trying to access a site using basic auth over https will not work
with certain servers, whereas it will work over plain http.
I tried searching to see if a correspon
New submission from ABR:
When attempting to use basic auth over https with a server that sends 401 and
closes the connection as soon as the headers missing auth are received, the
process aborts with a broken pipe when (presumably) trying to send the POST
body.
session = requests.session(auth
ABR added the comment:
If that's where the bug is. I forgot to mention this issue seems identical to
5542 (http://bugs.python.org/issue5542), but for https. The fix there was in
the underlying url/httplib.
--
___
Python tracker
ABR added the comment:
I hope this can be finally gotten in for 3.5, even if it's not the perfect
solution. I hit this issue and needed to call out to a subprocess as a
work-around, but that's far less reliable.
--
nosy: +arobert