subprocess.stderr


代表子进程的 stderrReadable Stream

¥A Readable Stream that represents the child process's stderr.

如果子进程是在 stdio[2] 设置为 'pipe' 以外的任何值的情况下生成的,那么这将是 null

¥If the child process was spawned with stdio[2] set to anything other than 'pipe', then this will be null.

subprocess.stderrsubprocess.stdio[2] 的别名。这两个属性将引用相同的值。

¥subprocess.stderr is an alias for subprocess.stdio[2]. Both properties will refer to the same value.

如果无法成功生成子进程,则 subprocess.stderr 属性可以是 nullundefined

¥The subprocess.stderr property can be null or undefined if the child process could not be successfully spawned.