class documentation

class DefinitionOrderedDict(collections.OrderedDict): (source)

Known subclasses: zim.config.dicts.ControlledDict

View In Hierarchy

Class that behaves like a dict but keeps items the order they were defined. Updating an items keeps it at the current position, removing and re-inserting an item puts it at the end of the sequence.
Method __setitem__ Undocumented
def __setitem__(self, key, value): (source)

Undocumented