__init __()在python子进程中得到了一个意外的关键字参数'timeout'

时间:2014-06-17 13:17:58

标签: python subprocess

我正在尝试运行以下使用pythos'subprocess'模块的代码。

subprocess.call(cli_args, stdout=client_log, stderr=client_log, timeout=10)

我正在使用超时争论,如果子进程停留在中间位置,则通过终止它来提及here以跳过此行。 但是当我运行这个时,我得到了以下错误。

Traceback (most recent call last):
  File "test.py", line 152, in <module>
    ret = runServiceTest(test_name, server_executable, server_extra_args, client_executable, client_extra_args, protocol, transport, 9090, 0, 0)
  File "test.py", line 102, in runServiceTest
    ret = subprocess.call(cli_args, stdout=client_log, stderr=client_log, timeout=10)
  File "/usr/lib/python2.7/subprocess.py", line 522, in call
    return Popen(*popenargs, **kwargs).wait()
TypeError: __init__() got an unexpected keyword argument 'timeout'

这是什么原因?我怎么解决这个问题?我的完整代码可以找到here

1 个答案:

答案 0 :(得分:6)

根据您的print语句判断,您使用的是Python2.x,其中subprocess.call没有timeout参数:

subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False)

https://docs.python.org/2/library/subprocess.html