[issue8813] SSLContext doesn't support loading a CRL
Changes by David Andrzejewski : -- nosy: +dandrzejewski ___ Python tracker <http://bugs.python.org/issue8813> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue8293] HTTPSConnection.close() does not immediately close the connection.
New submission from David Andrzejewski : Python 2.6.4, Windows XP. If you run the following code: import httplib http_connection = httplib.HTTPConnection("192.168.192.196") http_connection.request("GET", "/") http_connection.sock.settimeout(20) response = http_connection.getresponse() data = response.read() http_connection.close() And then run a netstat -a, you'll see that the connection is no longer established (it'll have a status of TIME_WAIT or something along those lines). However, if you run the following code: import httplib http_connection = httplib.HTTPSConnection("192.168.192.196") http_connection.request("GET", "/") http_connection.sock.settimeout(20) response = http_connection.getresponse() data = response.read() http_connection.close() And run a netstat, the connection will still be in the ESTABLISHED state. The connection does not end for several minutes (or when you terminate the program). I can get the connection to end when I want it by doing a del on the connection object and then manually running garbage collection - although that seems a bit wonky. I'm not really sure what all the differences are between HTTPConnection and HTTPSConnection, but it seems like they should both behave the same way in this regard. -- components: Library (Lib) messages: 102186 nosy: dandrzejewski severity: normal status: open title: HTTPSConnection.close() does not immediately close the connection. type: behavior versions: Python 2.6 ___ Python tracker <http://bugs.python.org/issue8293> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5103] ssl.SSLSocket timeout not working correctly when remote end is hanging
Changes by David Andrzejewski : -- nosy: +dandrzejewski ___ Python tracker <http://bugs.python.org/issue5103> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5103] ssl.SSLSocket timeout not working correctly when remote end is hanging
David Andrzejewski added the comment: I believe this issue may be responsible for causing a very long hang in my application. Here's an example of it hanging for 30 minutes. Yes - minutes. [UI] 2010-04-03 11:33:34,209 DEBUG: Communicating with GUI on 127.0.0.1:9095 - timeout 10 seconds [UI] 2010-04-03 12:03:16,118 ERROR: Error in send_gui_command()! Traceback (most recent call last): File "javaui.pyc", line 72, in send_message File "client.pyc", line 506, in send_message_with_params File "client.pyc", line 230, in call File "client.pyc", line 94, in do_request File "httplib.pyc", line 1100, in connect File "ssl.pyc", line 350, in wrap_socket File "ssl.pyc", line 118, in __init__ File "ssl.pyc", line 293, in do_handshake error: [Errno 10053] An established connection was aborted by the software in your host machine This is Python 2.6.4 on Windows. (This particular time it happened on a 32-bit Server 2008 system). My guess is that after that 30 minute time period, Windows is seeing that the connection is hung and it's just aborting it? -- ___ Python tracker <http://bugs.python.org/issue5103> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue8293] HTTPSConnection.close() does not immediately close the connection.
David Andrzejewski added the comment: Now, it turns out that if you send the HTTP "Connection: close" header, the connection does close at the end (because the server closes it). Still, it seems like this should behave the same regardless of whether it's HTTPConnection or HTTPSConnection. -- ___ Python tracker <http://bugs.python.org/issue8293> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue9720] zipfile writes incorrect local file header for large files in zip64
Changes by David Andrzejewski : -- nosy: +dandrzejewski ___ Python tracker <http://bugs.python.org/issue9720> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue1711603] logging
Changes by David Andrzejewski : -- title: syslog syscall support for SysLogLogger -> logging versions: +Python 2.5 ___ Python tracker <http://bugs.python.org/issue1711603> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue1711603] syslog syscall support for SysLogLogger -> logging
Changes by David Andrzejewski : -- title: logging -> syslog syscall support for SysLogLogger -> logging versions: -Python 2.5 ___ Python tracker <http://bugs.python.org/issue1711603> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue1711603] syslog syscall support for SysLogLogger
Changes by David Andrzejewski : -- title: syslog syscall support for SysLogLogger -> logging -> syslog syscall support for SysLogLogger ___ Python tracker <http://bugs.python.org/issue1711603> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue2475] Popen.poll always returns None
Changes by David Andrzejewski : -- nosy: +dandrzejewski ___ Python tracker <http://bugs.python.org/issue2475> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com