Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #20852

SSL on 3.2.2

Date 2012-02-24 20:17 -0700
Subject SSL on 3.2.2
From Jason Friedman <jason@powerpull.net>
Newsgroups comp.lang.python
Message-ID <mailman.153.1330139830.3037.python-list@python.org> (permalink)

Show all headers | View raw


Hello, attempting to build from source on Ubuntu 11.10.

Before running ./configure I had set this in Modules/Setup.dist:

SSL=/usr/lib/ssl
_ssl _ssl.c \
        -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
        -L$(SSL)/lib -lssl -lcrypto

$ ll /usr/lib/ssl
total 4
lrwxrwxrwx 1 root root   14 2012-02-20 17:58 certs -> /etc/ssl/certs
drwxr-xr-x 2 root root 4096 2012-02-20 18:32 misc
lrwxrwxrwx 1 root root   20 2012-02-08 18:04 openssl.cnf -> /etc/ssl/openssl.cnf
lrwxrwxrwx 1 root root   16 2012-02-20 17:58 private -> /etc/ssl/private

$ /opt/python/bin/python3
Python 3.2.2 (default, Feb 24 2012, 20:07:04)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ssl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/opt/python/lib/python3.2/ssl.py", line 60, in <module>
    import _ssl             # if we can't import it, let the error propagate
ImportError: No module named _ssl

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

SSL on 3.2.2 Jason Friedman <jason@powerpull.net> - 2012-02-24 20:17 -0700

csiph-web