小编典典

在 Python 2.6 中不推荐使用 BaseException.message

all

当我使用以下用户定义的异常时,我收到一条警告说 BaseException.message 在 Python 2.6 中已弃用:

class MyException(Exception):

    def __init__(self, message):
        self.message = message

    def __str__(self):
        return repr(self.message)

这是警告:

DeprecationWarning: BaseException.message has been deprecated as of Python 2.6
self.message = message

这有什么问题?为了摆脱弃用警告,我必须进行哪些更改?


阅读 213

收藏
2022-08-01

共1个答案

小编典典

解决方案 - 几乎不需要编码

只需继承您的异常类Exception并将消息作为第一个参数传递给构造函数

例子:

class MyException(Exception):
    """My documentation"""

try:
    raise MyException('my detailed description')
except MyException as my:
    print my # outputs 'my detailed description'

您可以使用str(my)或(不太优雅)my.args[0]来访问自定义消息。

背景

在较新版本的 Python(从 2.6 开始)中,我们应该从 Exception 继承我们的自定义异常类(从 Python 2.5
开始
)从
BaseException 继承。背景在PEP 352中有详细描述。

class BaseException(object):

    """Superclass representing the base of the exception hierarchy.
    Provides an 'args' attribute that contains all arguments passed
    to the constructor.  Suggested practice, though, is that only a
    single string argument be passed to the constructor."""

__str__并且__repr__已经以一种有意义的方式实现,特别是对于只有一个 arg(可以用作消息)的情况。

您不需要按照其他人的建议重复__str____init__实施或创建_get_message

2022-08-01