Created
November 10, 2011 04:22
-
-
Save xamox/1354108 to your computer and use it in GitHub Desktop.
This is useful for setting nested dictionaries and setting items like objects
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
class AutoVivification(dict): | |
""" | |
Implementation of perl's autovivification feature. | |
>>> a = AutoVivification() | |
>>> a[1][2][3] = 4 | |
>>> a[1][3][3] = 5 | |
>>> a[1][2]['test'] = 6 | |
>>> print a | |
>>> {1: {2: {'test': 6, 3: 4}, 3: {3: 5}}} | |
""" | |
def __getitem__(self, item): | |
try: | |
return dict.__getitem__(self, item) | |
except KeyError: | |
value = self[item] = type(self)() | |
return value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment