mod_python seg faults with xml

Fredrik Lundh fredrik at pythonware.com
Fri May 13 12:27:23 EDT 2005


"Michael" wrote:

> Trying to process xml (xml-rpx) with a handler in mod_python crashes
> mod_python. Previous versions worked fine. Only change is I recompiled
> with newest versions of Apache, Python, and mod_python. No PHP or
> anything like that involved. Any idea why it seg faults when I try to
> import xmlrpclib and similar modules? Thanks.

apache and python uses different versions of the expat library, which
causes all sorts of problems.  the solution is to make sure that they're
both using the same expat version; see e.g.

    http://mail.python.org/pipermail/python-list/2004-December/256676.html

</F>






More information about the Python-list mailing list