Message287989
This is a regression introduced in Python 2.7.13:
Importing the ssl module can fail with
>>> import ssl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/jdemeyer/sage/local/lib/python/ssl.py", line 133, in <module>
PROTOCOL_SSLv23 = PROTOCOL_TLS
NameError: name 'PROTOCOL_TLS' is not defined
While getting an ImportError from the ssl module is expected if SSL is not available (httplib for example handles that fine), a NameError is not. |
|
| Date |
User |
Action |
Args |
| 2017-02-17 11:35:23 | jdemeyer | set | recipients:
+ jdemeyer, christian.heimes |
| 2017-02-17 11:35:23 | jdemeyer | set | messageid: <1487331323.42.0.794986300226.issue29588@psf.upfronthosting.co.za> |
| 2017-02-17 11:35:23 | jdemeyer | link | issue29588 messages |
| 2017-02-17 11:35:22 | jdemeyer | create | |
|