如果我在 Windows 上执行以下 python 代码:
import subprocess
subprocess.Popen( [ 'python', 'foo' ], shell = True ).communicate()
正如预期的那样,我将错误写入标准输出:
python: can't open file 'foo': [Errno 2] No such file or directory
但是如果我在 linux (ubuntu, OSX - any) 上执行相同的代码,我会启动交互式 python REPL 而不是这个文本!像这样:
user@debian:~/Documents$ python test.py
Python 2.7.3 (default, Jab 2 2013, 16:53:07)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information
>>>
为什么会有这种奇怪的行为?使用参数 ('foo') 执行 python 解释器必须在所有平台上将其置于评估模式,而不是进入 REPL 模式。