This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sganguly
Recipients sganguly
Date 2013-12-07.06:25:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386397524.1.0.0289783025044.issue19916@psf.upfronthosting.co.za>
In-reply-to
Content
>>import urllib2
>>urllib2.urlopen('https://example.com')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/urllib2.py", line 127, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib/python2.7/urllib2.py", line 404, in open
    response = self._open(req, data)
  File "/usr/lib/python2.7/urllib2.py", line 427, in _open
    'unknown_open', req)
  File "/usr/lib/python2.7/urllib2.py", line 382, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 1249, in unknown_open
    raise URLError('unknown url type: %s' % type)
urllib2.URLError: <urlopen error unknown url type: https>
------------------------------------------------------------------------
>>import ssl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/ssl.py", line 60, in <module>
    import _ssl             # if we can't import it, let the error propagate
ImportError: /usr/lib/python2.7/lib-dynload/_ssl.so: symbol SSLeay_version, version OPENSSL_1.0.1 not defined in file libcrypto.so.10 with link time reference
History
Date User Action Args
2013-12-07 06:25:24sgangulysetrecipients: + sganguly
2013-12-07 06:25:24sgangulysetmessageid: <1386397524.1.0.0289783025044.issue19916@psf.upfronthosting.co.za>
2013-12-07 06:25:23sgangulylinkissue19916 messages
2013-12-07 06:25:23sgangulycreate