我有以下问题:
try:
with subprocess.check_call(query):
return 1
except ValueError:
return -1
这段代码运行一个 shell 脚本,到目前为止它正在工作。脚本返回 0。不过我得到了这个错误:
with subprocess.check_call(query):
AttributeError: 'int' object has no attribute '__exit__'
所以我的 try/except 块一定有问题。