我遇到了一个不寻常的情况。我正在尝试编写交互式控制台的脚本(用于教学/测试目的),我尝试了以下内容:
$ 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
>>>
如何在两种情况下打印提示?
编辑:重定向stdout
和stderr
会导致无法打印任何内容。所以Python显然“选择”了stdout
或stderr
中的一个。记录是否会发生?我无法弄清楚这是如何在Python源代码中实际完成的。
答案 0 :(得分:4)
似乎python检查stdout
是否为tty
:
/* 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);
第194行Parser/myreadline.c
的源代码。
解释器可能在启动时导入readline
模块,在这种情况下,PyOS_ReadlineFunctionPointer
将设置为call_readline
,它使用readline
库。特别是它调用了rl_callback_handler_install
。此功能的文档并未说明打印提示的位置,但它可能会检查stdout
/ stderr
是tty
s。