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


Groups > comp.lang.python > #33494

Re: error importing smtplib

From Dieter Maurer <dieter@handshake.de>
Subject Re: error importing smtplib
Date 2012-11-18 08:06 +0100
References <CAAoZyYPETQOvLcRHU1aBERhn0eKv=ebWxiPeQjGcUordP1QaaA@mail.gmail.com> <k836tk$r0e$1@ger.gmane.org> <CAAoZyYNNCZDySv-2+KznA69i-5E4Mk0k5EoPbFaERUmBRex0OA@mail.gmail.com> <k83nao$i07$1@ger.gmane.org> <CAAoZyYOOTi0opUTEo2nvSq6nCwgrmLXqRx3rmaWpGTzh8Sib-g@mail.gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.3787.1353222385.27098.python-list@python.org> (permalink)

Show all headers | View raw


Eric Frederich <eric.frederich@gmail.com> writes:

> ...
> So.... I'm guessing the problem is that after I log in, the process has a
> conflicting libssl.so file loaded.
> Then when I try to import smtplib it tries getting things from there and
> that is where the errors are coming from.
>
> The question now is how do I fix this?

Likely, you must relink the shared object containing
your "FOO_login". When its current version was linked,
the (really) old "libssl" has been current and the version was linked
against it.
As the binary objects for your shared object might depend on the old
version, it is best, to not only relink but to recompile it as well.

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


Thread

Re: error importing smtplib Dieter Maurer <dieter@handshake.de> - 2012-11-18 08:06 +0100

csiph-web