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 kaifeng
Recipients flox, kaifeng, neologix, pitrou
Date 2011-04-18.10:01:24
SpamBayes Score 4.5499895e-05
Marked as misclassified No
Message-id <1303120886.8.0.944542755923.issue11849@psf.upfronthosting.co.za>
In-reply-to
Content
Found a minor defect of Python 3.2 / 3.3: line 1676 of xml/etree/ElementTree.py
was:
    del self.target, self._parser # get rid of circular references
should be:
    del self.target, self._target, self.parser, self._parser # get rid of circular references

While it doesn't help this issue...
History
Date User Action Args
2011-04-18 10:01:26kaifengsetrecipients: + kaifeng, pitrou, flox, neologix
2011-04-18 10:01:26kaifengsetmessageid: <1303120886.8.0.944542755923.issue11849@psf.upfronthosting.co.za>
2011-04-18 10:01:24kaifenglinkissue11849 messages
2011-04-18 10:01:24kaifengcreate