[issue15795] Zipfile.extractall does not preserve file permissions
Change by ABR : -- nosy: -arobert ___ Python tracker <https://bugs.python.org/issue15795> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5542] Socket is closed prematurely in httplib, if server sends response before request body has been sent
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 corresponding https issue exists, but this came up instead. :-) -- nosy: +ABR ___ Python tracker <http://bugs.python.org/issue5542> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue16062] Socket closed prematurely in httplib for https
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=(USER, PASSWORD), verify=False) resp = session.post('https://foo.com/something') --> requests.exceptions.ConnectionError: [Errno 32] Broken pipe -- components: Library (Lib) messages: 171379 nosy: ABR priority: normal severity: normal status: open title: Socket closed prematurely in httplib for https type: behavior versions: Python 2.7 ___ Python tracker <http://bugs.python.org/issue16062> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue16062] Socket closed prematurely in httplib for https
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 <http://bugs.python.org/issue16062> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue15795] Zipfile.extractall does not preserve file permissions
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 ___ Python tracker <http://bugs.python.org/issue15795> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com