Just a thought: You could try an object-oriented approach where you derive your own dictionary class that keeps track of any changes made to it (and reports them). Seems like that might have many advantages over trying to compare two dicts...
To show how that might be done, here's a reasonably complete and somewhat tested sample implementation:
_Null = object() # unique object
class trackingdict(dict):
""" Subclass of dict which tracks all changes
in _changelist attribute.
"""
def __init__(self, *args, **kwargs):
super(self.__class__, self).__init__(*args, **kwargs)
self.init_changelist()
for key in sorted(self.iterkeys()):
self._changelist.append(AddKey(key, self[key]))
def init_changelist(self): # additional method
self._changelist = []
def __setitem__(self, key, value):
modtype = ChangeKey if key in self else AddKey
super(self.__class__, self).__setitem__(key, value)
self._changelist.append(modtype(key, self[key]))
def __delitem__(self, key):
super(self.__class__, self).__delitem__(key)
self._changelist.append(RemoveKey(key))
def clear(self):
deletedkeys = self.keys()
super(self.__class__, self).clear()
for key in sorted(deletedkeys):
self._changelist.append(RemoveKey(key))
def update(self, other=_Null):
if other is not _Null:
otherdict = dict(other) # convert to dict if necessary
changedkeys = set(k for k in otherdict if k in self)
super(self.__class__, self).update(other)
for key in sorted(otherdict.iterkeys()):
if key in changedkeys:
self._changelist.append(ChangeKey(key, otherdict[key]))
else:
self._changelist.append(AddKey(key, otherdict[key]))
def setdefault(self, key, default=None):
if key not in self:
self[key] = default # will append an AddKey to _changelist
return self[key]
def pop(self, key, default=_Null):
if key in self:
ret = self[key] # save value
self.__delitem__(key)
return ret
elif default is not _Null: # default specified
return default
else: # not there & no default
self[key] # raise KeyError
def popitem(self):
key, value = super(self.__class__, self).popitem()
self._changelist.append(RemoveKey(key))
# change-tracking record classes
class DictMutator(object):
def __init__(self, key, value=_Null):
self.key = key
self.value = value
def __repr__(self):
return '%s(%r%s)' % (self.__class__.__name__,
self.key,
'' if self.value is _Null else
': '+repr(self.value))
class AddKey(DictMutator): pass
class ChangeKey(DictMutator): pass
class RemoveKey(DictMutator): pass
if __name__ == '__main__':
td = trackingdict({'one': 1, 'two': 2})
print td._changelist
td['three'] = 3
print td._changelist
td['two'] = -2
print td._changelist
td.clear()
print td._changelist
td.init_changelist()
td['newkey'] = 42
print td._changelist
td.setdefault('another') # default None value
print td._changelist
td.setdefault('one more', 43)
print td._changelist
td.update(zip(('another', 'one', 'two'), (17, 1, 2)))
print td._changelist
td.pop('newkey')
print td._changelist
import traceback
import sys
try:
td.pop("won't find")
except KeyError:
print "KeyError as expected:"
traceback.print_exc(file=sys.stdout)
print '...and no change to _changelist:'
print td._changelist
td.init_changelist()
while td:
td.popitem()
print td._changelist
Note that unlike a simple comparison of the before and after state of a dictionary, this class will tell you about keys which were added and then deleted -- in other words, it keeps a complete history until its _changelist is re-initialized.
list1 = [0, 1, 2, 3, 4, 5, 6, 7],list2 = [0, 2, 3, 4, 5, 6, 7, 8]. What output do you expect? – Sven Marnach May 5 '11 at 20:388is moved to the front:[8, 1, 2, 3, 4, 5, 6, 7], does order count, or only presence/absence (a set)? Can the list contain a nested dictionary, which in turn contains a list, etc? – samplebias May 5 '11 at 20:49