dynamic library loading, missing symbols

"Martin v. Löwis" martin at v.loewis.de
Wed Jan 10 17:01:00 EST 2007


dfj225 at gmail.com schrieb:
> I suppose this means that any subsequent libraries dlopened will not
> see any of the symbols in my module?

That's correct, and intentional. Python has crashed in the past when
symbols conflicted across shared libraries.

> I guess I'll have to look through the Python documentation to see if
> they offer any work arounds to this problem.

There is sys.setdlopenflags, but I would use it with caution.

Regards,
Martin



More information about the Python-list mailing list