src/cm/utils/misc.py
author Simon Descarpentries <sid@sopinspace.com>
Tue, 25 Mar 2014 18:38:41 +0100
changeset 623 09640f41fed1
parent 0 40c8f766c9b8
permissions -rw-r--r--
Adapt tests to test_suite fixture, including empty text list


def update(obj, kwargs):
    """
    Update obj attributes with values from kwargs
    """
    for k,v in kwargs.items():
        if hasattr(obj,k):
            setattr(obj,k,v)