[issue15795] Zipfile.extractall does not preserve file permissions

2018-01-31 Thread ABR
Change by ABR : -- nosy: -arobert ___ Python tracker <https://bugs.python.org/issue15795> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue5542] Socket is closed prematurely in httplib, if server sends response before request body has been sent

2012-09-27 Thread ABR
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

[issue16062] Socket closed prematurely in httplib for https

2012-09-27 Thread ABR
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

[issue16062] Socket closed prematurely in httplib for https

2012-09-28 Thread ABR
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

[issue15795] Zipfile.extractall does not preserve file permissions

2015-01-05 Thread ABR
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