Popular recipes by Igor Ghisi http://code.activestate.com/recipes/users/2907747/2006-05-31T20:56:26-07:00ActiveState Code RecipesA more clean implementation for Ordered Dictionary (Python)
2006-05-31T20:56:26-07:00Igor Ghisihttp://code.activestate.com/recipes/users/2907747/http://code.activestate.com/recipes/496761-a-more-clean-implementation-for-ordered-dictionary/
<p style="color: grey">
Python
recipe 496761
by <a href="/recipes/users/2907747/">Igor Ghisi</a>
(<a href="/recipes/tags/extending/">extending</a>).
</p>
<p>An Ordered Dict records the order in which items are added. This implementation uses much less code than the others by extending not well-known class DictMixin.</p>