[EMAIL PROTECTED] wrote ..
> Dear Graham,
>
> I am the IT manager for a City of London research company, and we are
> looking for a suitable icalendar server solution. Your idea (and i am
> not
> certain if it has become more than an idea) for bridging between mod_dav
> and mod_python is intriguin
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 i
[
http://issues.apache.org/jira/browse/MODPYTHON-74?page=comments#action_12415819
]
Damjan Georgievski commented on MODPYTHON-74:
-
I vote for this feature to be added in mod_python.
I know some of the mod_python developers don't quite like WSGI
Hello,
I've run the 2 tests, and I do not see any leaks.
Laurent.
> 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'
> r