Re: 3.2.8 - Memory leaks with util.FieldStorage

2006-06-11 Thread Jim Gallacher
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=abar=b') req.content_type = 'text/plain' req.write('mod_python.util.parse_qsl') return apache.OK test2.py from mod_python

Re: 3.2.8 - Memory leaks with util.FieldStorage

2006-06-11 Thread Laurent Blanquet
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=abar=b') req.content_type = 'text/plain'

3.2.8 - Memory leaks with util.FieldStorage

2006-06-10 Thread Laurent Blanquet
Hello, I'm using MOD_APACHE 3.2.8 (from binary dist). with Apache 2.0.55 under Windows XP Pro. I encountermemory leaks (~ 16 Ko per request) with a very basic handler like : import mod_python from mod_python import util def handler(req):F=util.FieldStorage( req )return

Re: 3.2.8 - Memory leaks with util.FieldStorage

2006-06-10 Thread Jim Gallacher
Jim Gallacher wrote: Laurent Blanquet wrote: Hello, I'm using MOD_APACHE 3.2.8 (from binary dist). with Apache 2.0.55 under Windows XP Pro. I encounter memory leaks (~ 16 Ko per request) with a very basic handler like : import mod_python from mod_python import util def handler(req):

Re: 3.2.8 - Memory leaks with util.FieldStorage

2006-06-10 Thread Jim Gallacher
Jim Gallacher wrote: Laurent Blanquet wrote: Hello, I'm using MOD_APACHE 3.2.8 (from binary dist). with Apache 2.0.55 under Windows XP Pro. I encounter memory leaks (~ 16 Ko per request) with a very basic handler like : import mod_python from mod_python import util def handler(req):