0

在 python REPL I 中,分别调用os.closewith 01分别2标准输入、输出和错误。我怎样才能重新打开/重新初始化它们?这样我会在函数或代码块的开头关闭它们,然后在返回之前重新打开。

PS:python 特定和通用的细节将不胜感激。

4

1 回答 1

2

您不能关闭它们然后重新打开它们,但是您可以复制它们并在完成后恢复以前的值。像这样的东西;

copy_of_stdin  = os.dup(0)  // Duplicate stdin  to a new descriptor
copy_of_stdout = os.dup(1)  // Duplicate stdout to a new descriptor
copy_of_stderr = os.dup(2)  // Duplicate stderr to a new descriptor
os.closerange(0,2)          // Close stdin/out/err

...redirect stdin/out/err at will...

os.dup2(copy_of_stdin,  0)  // Restore stdin
os.dup2(copy_of_stdout, 1)  // Restore stdout
os.dup2(copy_of_stderr, 2)  // Restore stderr
os.close(copy_of_stdin)     // Close the copies
os.close(copy_of_stdout)
os.close(copy_of_stderr)
于 2013-04-28T15:26:44.310 回答