Ejemplo n.º 1
0
 def run(self):
     return Base_Step_Executor.run(self)
Ejemplo n.º 2
0
Archivo: sos_step.py Proyecto: mr-c/SOS
 def __init__(self, step):
     Base_Step_Executor.__init__(self, step)
Ejemplo n.º 3
0
 def __init__(self, step):
     # This is the only interesting part of this executor. Basically
     # it derives everything from SP_Step_Executor but does not
     # use the Queue mechanism, so the __init__ and the run
     # functions are copied from Base_Step_Executor
     Base_Step_Executor.__init__(self, step)