Removing items from a ChainMap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> from collections import ChainMap | |
>>> user_context = {'name': "Trey", 'website': "http://treyhunner.com"} | |
>>> global_context = {'name': "Anonymous User", 'page_name': "Profile Page"} | |
>>> context = ChainMap({}, user_context, global_context) | |
>>> context['page_name'] = "About Page" | |
>>> context['page_name'] | |
'About Page' | |
>>> del context['page_name'] | |
>>> context['page_name'] | |
'Profile Page' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment