Martin Panter added the comment:

Left a comment about a minor English grammar problem.

The existing comment Serhiy mentioned was added way back in 2003 for Issue 
668433. It appears to use the same underlying technique, reverting the nesting 
level before calling the base class dealloc. One paragraph talks about the 
extra increment used there compared to Serhiy’s method:

'''
But now it's possible that a chain of objects consisting solely of objects 
whose deallocator is subtype_dealloc() will defeat the trashcan mechanism 
completely: the decremented level means that the effective level never reaches 
the limit.  Therefore, we *increment* the level *before* entering the trashcan 
block, and matchingly decrement it after leaving.  This means the trashcan code 
will trigger a little early, but that's no big deal.
'''

I think we may not have to worry about this for ordered dict, assuming that 
PyDict_Type.tp_dealloc() can only recursively invoke odict_dealloc() from 
within its own trashcan block.

So as far as I can tell, this patch is good to apply, unless someone with more 
knowledge of garbage collection has any comments.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25395>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to