我最近升级到优胜美地。并且一些Python脚本悬而未决,曾经在Mavericks上运行。我的版本是2.7.8。我创建了一个测试用例:
import subprocess
cat = subprocess.Popen(['top', '-l', '1'],
stdout=subprocess.PIPE,
)
cat.wait()
在Maverics上运行,但在Yosemite上挂起。当我在优胜美地中断时,我看到以下追溯。
Traceback (most recent call last):
File "test.py", line 5, in <module>
cat.wait()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1376, in wait
pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 476, in _eintr_retry_call
return func(*args)
KeyboardInterrupt
任何暗示我做错了什么?
答案 0 :(得分:2)
您似乎需要致电communicate()
。来自Python documentation:
<强>
Popen.wait()
强>等待子进程终止。设置并返回
returncode
属性。警告:使用
stdout=PIPE
和/或stderr=PIPE
时会出现死锁,子进程会为管道生成足够的输出 块等待OS管道缓冲区接受更多数据。使用communicate()
要避免这种情况。