Bases: object
object
Abstract base class for runners.
Methods
__init__()
__init__
finalize()
finalize
Finalize the runner
initialize()
initialize
Initialize the runner
run(func[, args, kwargs])
run
Runs the given function.
Attributes
initialized
Initialization flag
bool
func (Function) – The function to be run
args (tuple) – The function arguments
kwargs (dict) – The function keyword arguments
results – The functions return value
Any