class documentation
class RunResult(object):
Holds the result of running external programs.
Method | __init__ |
Undocumented |
Class Variable | __slots__ |
Undocumented |
Class Variable | output |
Undocumented |
Instance Variable | cmd |
Undocumented |
Instance Variable | exit |
the exit code of the program, or None (if the program didn't exit()) |
Instance Variable | fail |
a string detailing the termination reason |
Instance Variable | failed |
True in case the program was terminated by a signal or exited with a non-zero exit code |
Instance Variable | failed |
True in case the program was terminated by timeout |
Instance Variable | signal |
the signal that caused the program to finish, or None (if the program wasn't terminated by a signal) |
Instance Variable | stderr |
the standard error of the program |
Instance Variable | stdout |
the standard output of the program |
Method | _ |
Returns the combined stdout and stderr for easier usage. |