Popular recipes by Chris Leong http://code.activestate.com/recipes/users/4173277/2010-03-09T03:43:13-08:00ActiveState Code RecipesVirtual collections (Python) 2010-03-09T03:43:13-08:00Chris Leonghttp://code.activestate.com/recipes/users/4173277/http://code.activestate.com/recipes/577092-virtual-collections/ <p style="color: grey"> Python recipe 577092 by <a href="/recipes/users/4173277/">Chris Leong</a> (<a href="/recipes/tags/collections/">collections</a>). </p> <p>This recipe creates a collection proxy which allows several lists to be treated as one. When the collection proxy is accessed/modified, it is as though the operation was performed one the underlying lists.</p>