def run(self): return Base_Step_Executor.run(self)
def __init__(self, step): Base_Step_Executor.__init__(self, step)
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)