Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #33494 > unrolled thread
| Started by | Dieter Maurer <dieter@handshake.de> |
|---|---|
| First post | 2012-11-18 08:06 +0100 |
| Last post | 2012-11-18 08:06 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: error importing smtplib Dieter Maurer <dieter@handshake.de> - 2012-11-18 08:06 +0100
| From | Dieter Maurer <dieter@handshake.de> |
|---|---|
| Date | 2012-11-18 08:06 +0100 |
| Subject | Re: error importing smtplib |
| Message-ID | <mailman.3787.1353222385.27098.python-list@python.org> |
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 top | Article view | comp.lang.python
csiph-web