[XML-SIG] Availability of libxml2 and libxslt Python bindings
Hannu Krosing
hannu@tm.ee
21 Feb 2002 20:40:04 +0200
On Thu, 2002-02-21 at 20:25, Fred L. Drake, Jr. wrote:
>
> M.-A. Lemburg writes:
> > One other thing you could try is to have module A load
> > both l1 and l2, or if the dependencies are just l2 -> l1,
> > to assure that l1 is loaded prior to l2.
>
> One possible issue is that, by default, Python does not load the
> symbols from libraries loaded for dynamic modules. Daniel, to test
> this easily, try this before importing A or B:
>
> ------------------------------------------------
> import dl
>>> import dl
Traceback (most recent call last):
File "<stdin>", line 1, in ?
ImportError: No module named dl
This is on RH linux 7.1 with Python 2.2
-------------
Hannu