gpt4 book ai didi

Python:在异常实例中重写 __str__

转载 作者:太空狗 更新时间:2023-10-30 01:49:33 26 4
gpt4 key购买 nike

在引发异常后,我试图覆盖 Python 中 Exception 子类的打印输出,但我没有运气让我的覆盖实际被调用。

def str_override(self):
"""
Override the output with a fixed string
"""

return "Override!"

def reraise(exception):
"""
Re-raise an exception and override its output
"""

exception.__str__ = types.MethodType(str_override, exception, type(exception))

# Re-raise and remove ourselves from the stack trace.
raise exception, None, sys.exc_info()[-1]

def test():
"""
Should output "Override!" Actually outputs "Bah Humbug"
"""
try:
try:
raise Exception("Bah Humbug")
except Exception, e:
reraise(e, "Said Scrooge")
except Exception, e:
print e

知道为什么这实际上没有覆盖 str 方法吗?反省实例变量表明该方法实际上已被该方法覆盖,但它就像 Python 只是拒绝通过打印调用它。

我在这里错过了什么?

最佳答案

问题不是 __str__() 没有被覆盖(就像你已经说过的那样),而是 str(e) (通过打印无形地调用)总是等同于e.__str__()。更具体地说,如果我做对了,str()(以及其他特殊方法,例如 repr())将不会查找 str 在实例字典中 - 它只会在类字典中查找它。至少所谓的新型类(Python 3.x IIRC 中仅有的类)就是这种情况。您可以在这里阅读更多相关信息:

http://mail.python.org/pipermail/python-bugs-list/2005-December/031438.html

如果您想更改重新引发的异常的异常错误消息,您可以改为执行以下操作:

def reraise(exception):
"""
Re-raise an exception and override its output
"""

exType = type(exception)
newExType = type(exType.__name__ + "_Override", (exType,), { '__str__': str_override})
exception.__class__ = newExType

# Re-raise and remove ourselves from the stack trace.
raise exception, None, sys.exc_info()[-1]

这将使用 str 覆盖动态派生一个新的异常类,并将异常更改为该类的实例。现在您的代码应该可以工作了。

关于Python:在异常实例中重写 __str__,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5918003/

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