[Python-bugs-list] [ python-Bugs-458835 ] SSL support in httplib causes exception (original) (raw)
noreply@sourceforge.net noreply@sourceforge.net
Thu, 11 Oct 2001 09:07:16 -0700
- Previous message: [Python-bugs-list] [ python-Bugs-470072 ] Change in Unicode response to t#
- Next message: [Python-bugs-list] [ python-Bugs-458839 ] SSL errno wrong under Windows
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Bugs item #458835, was opened at 2001-09-05 11:48 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105470&aid=458835&group_id=5470
Category: Python Library Group: Python 2.1.1 Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody)
Assigned to: Jeremy Hylton (jhylton) Summary: SSL support in httplib causes exception
Initial Comment: in class 'FakeSocket', method 'makefile' line 593:
except socket.sslerror,msg:
doesn't work as the socketmodule.c code raises socket.error not socket.sslerror; perhaps:
except (socket.error,socket.sslerror), msg:
or
except socket.error, msg:
You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105470&aid=458835&group_id=5470
- Previous message: [Python-bugs-list] [ python-Bugs-470072 ] Change in Unicode response to t#
- Next message: [Python-bugs-list] [ python-Bugs-458839 ] SSL errno wrong under Windows
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]