Issue1897

classification
Title: 2.7.0ax only has partial ssl support
Type: behaviour Severity: normal
Components: Core Versions: 2.7a1
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: amak Nosy List: amak, fwierzbicki, oscar
Priority: Keywords:

Created on 2012-05-25.18:39:18 by oscar, last changed 2012-06-08.22:14:26 by amak.

Messages
msg7151 (view) Author: Oscar (oscar) Date: 2012-05-25.18:39:18
Looks like 2.7.0a1 and 2.7.0.a2 only have partial ssl support

>>> import httplib
>>> hasattr(httplib, 'HTTPS')
False
>>> import socket
>>> hasattr(socket, 'ssl')
True

as a result 'pip install tornado' fails with URLError: <urlopen error unknown urltype: https>

I checked and 2.7a1 has the same issue but 2.5.3b1 works fine.
msg7194 (view) Author: Alan Kennedy (amak) Date: 2012-06-08.22:14:26
Fix checked in at

http://hg.python.org/jython/rev/ca29927d58f2

This extremely limited SSL module enables the use of HTTPS in httplib.
History
Date User Action Args
2012-06-08 22:14:26amaksetstatus: open -> closed
resolution: fixed
messages: + msg7194
2012-06-05 20:00:35amaksetassignee: amak
nosy: + amak
2012-05-29 17:43:32fwierzbickisetnosy: + fwierzbicki
2012-05-25 18:39:18oscarcreate