Laurent, Could you run a couple of more tests?
test1.py
--------
from mod_python import apache, util
def handler(req):
pqs = util.parse_qsl('foo=a&bar=b')
req.content_type = 'text/plain'
req.write('mod_python.util.parse_qsl')
return apache.OK
test2.py
--------
from mod_python import apache
import cgi
def handler(req):
pqs = cgi.parse_qsl('foo=a&bar=b')
req.content_type = 'text/plain'
req.write('cgi.parse_qsl')
return apache.OK
Jim
