[XML-SIG] Re: sax parser leaks memory?

Fredrik Lundh fredrik@effbot.org
Mon, 4 Dec 2000 21:46:53 +0100


I wrote:
> on my windows box, this little script runs out of memory
> within 30 seconds or so...

here's another example:

from xml.parsers import expat

while 1:
    p = expat.ParserCreate()

</F>