Пример #1
0
 def __init__(self, proxy, local, spec=None, static=False):
     self._proxy = proxy
     self._local = local
     DynStrActionBase.__init__(self, spec=spec, static=static)
Пример #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)
Пример #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
Пример #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
Пример #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)
Пример #9
0
 def __init__(self, proxy, local, spec=None, static=False):
     self._proxy = proxy
     self._local = local
     DynStrActionBase.__init__(self, spec=spec, static=static)