Interface ExecutionResult

Represents the result of a Python script execution.

interface ExecutionResult {
    aborted: boolean;
    exitCode: number;
    stderr: string;
    stdout: string;
}

Properties

aborted: boolean

Indicates whether the execution was aborted before completion.

exitCode: number

The exit code returned by the Python process.

stderr: string

The standard error output from the execution.

stdout: string

The standard output from the execution.