Ejemplo n.º 1
0
 def __init__(self, proxy, local, spec=None, static=False):
     self._proxy = proxy
     self._local = local
     DynStrActionBase.__init__(self, spec=spec, static=static)
Ejemplo n.º 2
0
 def _execute(self, data=None):
     # Crude, but better than copy-pasting the execute code.
     self._data = ensure_execution_context(data)
     DynStrActionBase._execute(self, data)
Ejemplo n.º 3
0
 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):
     DynStrActionBase.__init__(self, spec)
     self.by = by
Ejemplo n.º 6
0
 def __init__(self, by, spec, tracker):
     DynStrActionBase.__init__(self, spec)
     self.by = by
     self.tracker = tracker
 def __init__(self, spec, formatter):
     DynStrActionBase.__init__(self, spec)
     self.formatter = formatter
Ejemplo n.º 8
0
 def _execute(self, data=None):
     # Crude, but better than copy-pasting the execute code.
     self._data = ensure_execution_context(data)
     DynStrActionBase._execute(self, data)
Ejemplo n.º 9
0
 def __init__(self, proxy, local, spec=None, static=False):
     self._proxy = proxy
     self._local = local
     DynStrActionBase.__init__(self, spec=spec, static=static)