.*
关于subprocess模块可以用来取代这些模块和功能在下面可以找到
这个模块定义了一个Popen的类:
class Popen(args, bufsize=0, executable=None,...默认值为bufsize是0(无缓冲的)。
stdin、stdout和stderr分别指定执行程序的标准输入,标准输出和标准错误。有效值是PIPE,现有的文件描述符(正整数),现有文件对象,None。..., child_stdout) = (p.stdin, p.stdout)
(child_stdin,
child_stdout,
child_stderr) = os.popen3(...=PIPE, stderr=PIPE, close_fds=True)
(child_stdin,
child_stdout,
child_stderr) = (p.stdin, p.stdout...=STDOUT, close_fds=True)
(child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
在 Unix系统中,