gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 13:43:58 24 4
gpt4 key购买 nike

我正在尝试运行以下使用 pythos“子进程”模块的代码。

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 .

最佳答案

根据您的 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

关于python - __init__() 在 python 子进程中得到了一个意外的关键字参数 'timeout',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24264922/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com