We are trying to fetch an RSS Feed and than trying to parse it using ElementTree. Its working fine when I use python2.7 but is crashing Apache if the python version is 2.6. Below is the code
urlres = urrlib.urlopen(url)
root = ET.parse(urlres)
The code is not executing beyond ET.parse. I am getting this error
httpd: Objects/stringobject.c:115: PyString_FromString: Assertion `str != ((void *)0)' failed.
[Tue Nov 20 05:03:13 2012] [notice] child pid 1959 exit signal Aborted (6)
Actually my apache is built with python 2.6 (mod_python and wsgi) and it would take some time to re build the whole thing with python2.7.
Is there any way I can get this code working with python2.6?
feedparserlibrary? No need to re-invent the wheel here. – Martijn Pieters Nov 20 '12 at 10:18