11

我遇到了一个有点不寻常的情况。我正在尝试编写交互式控制台脚本(用于教学/测试目的),并尝试了以下操作:

$ python > /dev/null
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr  9 2012, 20:52:43) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print 3
>>> 

3没有打印,所以很明显其他所有内容都在stderr. 到目前为止,一切都很好。但随后我们重定向stderr

$ python 2> /dev/null
>>> print 3
3
>>> 

在这两种情况下如何打印提示?

编辑:重定向两者stdoutstderr导致绝对不会打印任何内容。所以 Python 显然是在“选择”其中一个stdoutor stderr。这是否记录在案?我无法弄清楚这实际上是如何在 Python 源代码中完成的。

4

1 回答 1

4

似乎python检查是否stdouttty

/* This is needed to handle the unlikely case that the
 * interpreter is in interactive mode *and* stdin/out are not
 * a tty.  This can happen, for example if python is run like
 * this: python -i < test1.py
 */
if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout)))
    rv = PyOS_StdioReadline (sys_stdin, sys_stdout, prompt);
else
    rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout,
                                         prompt);

来自Parser/myreadline.c第 194 行的源代码。

解释器可能会readline在启动时导入模块,在这种情况下PyOS_ReadlineFunctionPointer将设置为call_readline,它使用readline库。特别是它调用rl_callback_handler_install. 此函数的文档没有说明提示的打印位置,但它可能会检查stdout/是否stderrttys。

于 2013-08-24T15:17:05.850 回答