File "/usr/bin/yum", line 30 except KeyboardInterrupt, e:
时间: 2024-01-20 17:02:47 浏览: 136
Linux系统目录解析
这看起来像是一个 Python 2 的语句,使用了旧式的异常处理方式。在 Python 3 中,应该使用以下语句来处理 KeyboardInterrupt 异常:
```
try:
# some code
except KeyboardInterrupt as e:
# handle the exception
```
阅读全文