Python 2.6中不推荐使用BaseException.message
当我使用以下用户定义的异常时,我收到一条警告:Python 2.6中不推荐使用BaseException.message: 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 这怎么了 我要更改什么以摆脱过时警告?