Result of a sandboxed subprocess execution.
Attributes
----------
exit_code
The subprocess return code, or ``1`` on launch failure.
stdout
Captured standard output (possibly truncated).
stderr
Captured standard error (possibly truncated).
timed_out
``True`` if the process was killed due to timeout.
output_truncated
``True`` if combined stdout+stderr exceeded ``max_output_bytes``.
error_message
Non-empty if the process could not be launched (e.g. not found
on PATH). Distinct from stderr — set on ``OSError``.
Definition at line 183 of file sandbox.py.