class SuccessfulAction(object):
        def __init__(self, action, status):
            self.__label = action.label
            self.__id = id(action)
            self.__dependencies = set(id(d) for d in action.dependencies)