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 jek
Recipients jek, rhettinger
Date 2010-09-10.20:19:12
SpamBayes Score 0.00011902684
Marked as misclassified No
Message-id <1284149953.7.0.219710181131.issue9825@psf.upfronthosting.co.za>
In-reply-to
Content
I find the behavior surprising compared to dict and other containers, where this is not an issue and weakrefs are not required in user code.  I would not be surprised, however, to have to wait for a gc.collect() to clean up my cycles like I do for regular objects.

For what it's worth, the pure-python alternative linked in the docs uses neither __del__ nor weakrefs, though it is undoubtably less efficient than this implementation.  And the workaround 'del OrderedDict.__del__' seems to work as well, if one is willing to wait for a gc collection.
History
Date User Action Args
2010-09-10 20:19:13jeksetrecipients: + jek, rhettinger
2010-09-10 20:19:13jeksetmessageid: <1284149953.7.0.219710181131.issue9825@psf.upfronthosting.co.za>
2010-09-10 20:19:12jeklinkissue9825 messages
2010-09-10 20:19:12jekcreate