I've run into a somewhat unusual situation. I'm trying to script the interactive console (for teaching/testing purposes), and I tried the following:
$ 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
isn't printed, so clearly everything else was on stderr
. So far so good. But then we redirect stderr
:
$ python 2> /dev/null
>>> print 3
3
>>>
How can the prompt be printed in both cases?
EDIT: Redirecting both stdout
and stderr
causes absolutely nothing to be printed. So Python's clearly "choosing" one of stdout
or stderr
. Is that documented to happen? I couldn't figure out how this is actually done in the Python source code.
It seems like python checks whether
stdout
is atty
:Sourcecode from
Parser/myreadline.c
around line 194.It's possible that the interpreter imports the
readline
module at startup, in which casePyOS_ReadlineFunctionPointer
will be set tocall_readline
, which uses thereadline
library. In particular it callsrl_callback_handler_install
. The documentation of this function doesn't state where the prompt is printed, but it's possible that it checks whetherstdout
/stderr
aretty
s.