#14: Setting up trac under mod_wsgi returns NULL result error

When accessing the trac URI, a text/plain document is returned with Python errors, ending with

SystemError: NULL result without error in PyObject_Call



Think you've got a solution? Help 92049143cabb7ba896d7c06e19906303_small yliu out by posting your solution

Re: [sqlite] Segmentation Fault when using mod_python / mod_wsgi

http://www.mail-archive.com/[email protected]/msg34866.html - found by 92049143cabb7ba896d7c06e19906303_small yliu on February 12, 2009, 12:30 PM UTC

symbol clash with mod_*_cache under Apache. 1. Disable the mod_cache and associated mod_*_cash modules in Apache 2. Install a newer version of PySQLite > 2.3.2 and then do the following changes # Change this import sqlite3 # to this from pysqlite2 import dbapi2 as sqlite3 3. Remove the existing sqlite3 module in Python 2.5 and replace it with a module that does a from pysqlite2.dbapi2 import *