This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients
Date 2002-04-04.06:21:13
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=21627

I think the problem is elsewhere. Danny's demo script
clearly is buggy; if you use the IncrementalParser
interface, you *must* invoke .close() at the end of the
parse run; else you get cyclic garbage.

The cyclic garbage collector will pick up that garbage; just
invoke gc.collect() after test1 and test2 to see all
TestParsers destroyed.

So I don't think any action on Python code is necessary as a
bug fix; if there are remaining problems, then they must be
in pyexpat.c. I'll investigate 2.52 and 2.54 as candidates
for backporting.
History
Date User Action Args
2007-08-23 14:00:09adminlinkissue535474 messages
2007-08-23 14:00:09admincreate