def dictfilter(func, d): return dict(filter(lift(func), iteritems(d)))
def dictmap(func, d): return dict(map(lift(func), iteritems(d)))