每次我的 Python 程序结束时,都会得到以下信息:
close failed in file object destructor:
IOError: [Errno 9] Bad file descriptor
Error in sys.excepthook:
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 66, in apport_excepthook
from apport.fileutils import likely_packaged, get_recent_crashes
RuntimeError: sys.meta_path must be a list of import hooks
Apport 认为,如果出现问题,它不会引发更多问题。但就我而言,Apport 似乎是一个大问题。
我在系统中只是众多程序员之一,并且没有 root 权限。因此,我想让我的 Python 程序简单地关闭 Apport,而不是全局关闭 Apport。
如何禁用我的用户帐户的 Apport?
答案1
这看起来像是 Apport 中的一个问题。我会修复一个错误,因为如果它导致 Apport 崩溃,那么无法保证你的程序不会在不同环境中失败。
如果你确实想为你的程序禁用 Apport,请尝试以下操作:
if sys.excepthook != sys.__excepthook__:
print("Warning: 3rd party exception hook is active")
if sys.excepthook.__name__ == 'apport_excepthook':
print(" killing Ubuntu's Apport hook")
sys.excepthook = sys.__excepthook__