def __init__(self, proxy, local, spec=None, static=False): self._proxy = proxy self._local = local DynStrActionBase.__init__(self, spec=spec, static=static)
def _execute(self, data=None): # Crude, but better than copy-pasting the execute code. self._data = ensure_execution_context(data) DynStrActionBase._execute(self, data)
def __init__(self, by, spec): DynStrActionBase.__init__(self, spec) self.by = by
def __init__(self, spec, formatter): DynStrActionBase.__init__(self, spec) self.formatter = formatter
def __init__(self, by, spec, tracker): DynStrActionBase.__init__(self, spec) self.by = by self.tracker = tracker