我正在尝试运行以下使用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。
答案 0 :(得分:6)
根据您的print
语句判断,您使用的是Python2.x,其中subprocess.call
没有timeout
参数:
subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False)