class documentation

class DataDict(collections.defaultdict):

View In Hierarchy

a dictionary of lists (of data)

Method __init__ Undocumented
Method clear Undocumented
Method load element-wise append/merge data of loaded dict to self,
Method save Undocumented
Method update append data of entries in dict_ to entries in self
Instance Variable filename Undocumented
def __init__(self, filename='_data.py'):

Undocumented

def clear(self):

Undocumented

def load(self):

element-wise append/merge data of loaded dict to self,

by calling update.

To load cleanly without merge use clear + load or the class constructor with a new filename.

def save(self):

Undocumented

def update(self, dict_):

append data of entries in dict_ to entries in self

filename =

Undocumented