[issue1223] httplib does not handle ssl end of file properly

2016-08-20 Thread Martin Panter
Martin Panter added the comment: I think the default of suppress_ragged_eofs=True was a bad idea because by default you cannot tell a secure EOF signal from an insecure error; see Issue 27815. -- nosy: +martin.panter ___ Python tracker

[issue1223] httplib does not handle ssl end of file properly

2008-12-05 Thread Georg Brandl
Changes by Georg Brandl <[EMAIL PROTECTED]>: -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list m

[issue1223] httplib does not handle ssl end of file properly

2008-09-03 Thread Bill Janssen
Changes by Bill Janssen <[EMAIL PROTECTED]>: -- resolution: accepted -> fixed ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs

[issue1223] httplib does not handle ssl end of file properly

2008-06-29 Thread Bill Janssen
Bill Janssen <[EMAIL PROTECTED]> added the comment: I believe this is now fixed in the SVN. There's a new parameter on SSLSocket, suppress_ragged_eofs, which allows it to be enabled selectively, but default to True. -- resolution: -> accepted ___ Py

[issue1223] httplib does not handle ssl end of file properly

2008-01-23 Thread Christian Heimes
Christian Heimes added the comment: I've set version to 2.6 and priority to high so we don't forget it. -- nosy: +tiran priority: -> high versions: +Python 2.6 -Python 2.5 __ Tracker <[EMAIL PROTECTED]>

[issue1223] httplib does not handle ssl end of file properly

2008-01-23 Thread Gregory P. Smith
Changes by Gregory P. Smith: -- assignee: -> janssen __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue1223] httplib does not handle ssl end of file properly

2008-01-05 Thread vila
Changes by vila: -- nosy: +vila __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailma

[issue1223] httplib does not handle ssl end of file properly

2007-12-10 Thread Bill Janssen
Bill Janssen added the comment: I'll close this when the fix gets into all the branches (right now it's in the pre-2.6 code, and in the 3K code, but not yet in the 2.6 branch). __ Tracker <[EMAIL PROTECTED]> _

[issue1223] httplib does not handle ssl end of file properly

2007-10-28 Thread Bill Janssen
Bill Janssen added the comment: I have a slightly different version of this patch in the new SSL code. It (optionally, but defaulting to True) catches SSL_ERROR_EOF and returns None, but allows other ssl errors to go through. -- nosy: +janssen Added file: http://bugs.python.org/file86

[issue1223] httplib does not handle ssl end of file properly

2007-10-01 Thread Brett Cannon
Brett Cannon added the comment: Patch is inlined in the opening comment for the issue. -- keywords: +patch nosy: +brett.cannon type: crash -> behavior __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1223] httplib does not handle ssl end of file properly

2007-09-30 Thread Richie Ward
Changes by Richie Ward: -- versions: +Python 2.5 -Python 2.6 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1223] httplib does not handle ssl end of file properly

2007-09-30 Thread Richie Ward
New submission from Richie Ward: I was using httplib to power my xml rpc script. I had problems when I wanted to use SSL and I got this error: File "/usr/lib/python2.5/httplib.py", line 1109, in recv return self._ssl.read(len) socket.sslerror: (8, 'EOF occurred in violation of protocol') I