Re: mod_python and xml.sax

2004-12-22 Thread Jeffrey Froman
Fredrik Lundh wrote: > iirc, both apache and python uses the expat parser; if you don't make sure > that both use the same expat version, you may get into trouble. Thank you very much Fredrik, this does seem to be the problem I was having. > this > poster claims to have a fix: > > http://www.m

Re: mod_python and xml.sax

2004-12-20 Thread Fredrik Lundh
Jeffrey Froman wrote: >I am having difficulty getting mod_python and xml.sax to play nicely with > each other. I am using: > > Python 2.4 > Mod_python 2.7.10 > Apache 1.3.33 > > Using the mod_python.publisher handler to invoke the go function in the > following scri

mod_python and xml.sax

2004-12-20 Thread Jeffrey Froman
I am having difficulty getting mod_python and xml.sax to play nicely with each other. I am using: Python 2.4 Mod_python 2.7.10 Apache 1.3.33 Using the mod_python.publisher handler to invoke the go function in the following script: from xml.sax import make_parser def go(): x = make_parser